Skip to main content

Query

Struct Query 

Source
pub struct Query {
    pub queryid: Option<QueryId>,
    pub node: Option<NodeName>,
    pub form: Option<DataForm>,
    pub set: Option<SetQuery>,
    pub flip_page: bool,
}
Expand description

Starts a query to the archive.

Fields§

§queryid: Option<QueryId>

An optional identifier for matching forwarded messages to this query.

§node: Option<NodeName>

Must be set to Some when querying a PubSub node’s archive.

§form: Option<DataForm>

Used for filtering the results.

§set: Option<SetQuery>

Used for paging through results.

§flip_page: bool

Used for reversing the order of the results.

Trait Implementations§

Source§

impl AsXml for Query

Source§

type ItemIter<'xso_proc_as_xml_iter_lifetime> = QueryAsXmlIterator<'xso_proc_as_xml_iter_lifetime>

The iterator type. Read more
Source§

fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>

Return an iterator which emits the contents of the struct or enum as serialisable Item items.
Source§

fn as_xml_dyn_iter<'x>( &'x self, ) -> Result<Box<dyn Iterator<Item = Result<Item<'x>, Error>> + 'x>, Error>

Return the same iterator as as_xml_iter, but boxed to erase the concrete iterator type. Read more
Source§

impl Debug for Query

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&Query> for Element

Source§

fn from(other: &Query) -> Self

Converts to this type from the input type.
Source§

impl From<Query> for Element

Source§

fn from(other: Query) -> Self

Converts to this type from the input type.
Source§

impl FromXml for Query

Source§

const XML_NAME_MATCHER: XmlNameMatcher<'static>

A predicate which determines if Self may be parsed from a given XML element. Read more
Source§

type Builder = QueryFromXmlBuilder

A builder type used to construct the element. Read more
Source§

fn from_events( name: QName, attrs: AttrMap, ctx: &Context<'_>, ) -> Result<Self::Builder, FromEventsError>

Attempt to initiate the streamed construction of this struct from XML. Read more
Source§

impl IqGetPayload for Query

Source§

impl IqResultPayload for Query

Source§

impl IqSetPayload for Query

Source§

impl TryFrom<Element> for Query

Source§

type Error = FromElementError

The type returned in the event of a conversion error.
Source§

fn try_from(other: Element) -> Result<Self, FromElementError>

Performs the conversion.

Auto Trait Implementations§

§

impl Freeze for Query

§

impl RefUnwindSafe for Query

§

impl Send for Query

§

impl Sync for Query

§

impl Unpin for Query

§

impl UnsafeUnpin for Query

§

impl UnwindSafe for Query

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsXmlDyn for T
where T: AsXml,

Source§

fn as_xml_dyn_iter<'x>( &'x self, ) -> Result<Box<dyn Iterator<Item = Result<Item<'x>, Error>> + 'x>, Error>

Return an iterator which emits the contents of the struct or enum as serialisable Item items by calling AsXml::as_xml_dyn_iter.

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.