pub struct QueryReply {
pub entries: Option<Vec<Configure>>,
pub cursor: Option<Cursor>,
}Expand description
QueryReply is returned by the handler in the [Reply] body field.
Fields§
§entries: Option<Vec<Configure>>Configure entries matching the query.
cursor: Option<Cursor>Pagination cursor.
Trait Implementations§
Source§impl Clone for QueryReply
impl Clone for QueryReply
Source§fn clone(&self) -> QueryReply
fn clone(&self) -> QueryReply
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryReply
impl Debug for QueryReply
Source§impl Default for QueryReply
impl Default for QueryReply
Source§fn default() -> QueryReply
fn default() -> QueryReply
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryReply
impl<'de> Deserialize<'de> for QueryReply
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QueryReply
impl RefUnwindSafe for QueryReply
impl Send for QueryReply
impl Sync for QueryReply
impl Unpin for QueryReply
impl UnwindSafe for QueryReply
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more