Struct xmpp_parsers::mam::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 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(elem: Query) -> Element

Converts to this type from the input type.
source§

impl TryFrom<Element> for Query

§

type Error = Error

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

fn try_from(elem: Element) -> Result<Query, Error>

Performs the conversion.
source§

impl IqGetPayload for Query

source§

impl IqResultPayload for Query

source§

impl IqSetPayload for Query

Auto Trait Implementations§

§

impl RefUnwindSafe for Query

§

impl Send for Query

§

impl Sync for Query

§

impl Unpin 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> 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

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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.