pub struct MetadataQueryResults {
pub entries: Option<Vec<MetadataQueryResultItem>>,
pub limit: Option<i64>,
pub next_marker: Option<String>,
}Fields§
§entries: Option<Vec<MetadataQueryResultItem>>§limit: Option<i64>§next_marker: Option<String>Trait Implementations§
Source§impl Clone for MetadataQueryResults
impl Clone for MetadataQueryResults
Source§fn clone(&self) -> MetadataQueryResults
fn clone(&self) -> MetadataQueryResults
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MetadataQueryResults
impl Debug for MetadataQueryResults
Source§impl Default for MetadataQueryResults
impl Default for MetadataQueryResults
Source§fn default() -> MetadataQueryResults
fn default() -> MetadataQueryResults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataQueryResults
impl<'de> Deserialize<'de> for MetadataQueryResults
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
Source§impl PartialEq for MetadataQueryResults
impl PartialEq for MetadataQueryResults
Source§impl Serialize for MetadataQueryResults
impl Serialize for MetadataQueryResults
impl StructuralPartialEq for MetadataQueryResults
Auto Trait Implementations§
impl Freeze for MetadataQueryResults
impl RefUnwindSafe for MetadataQueryResults
impl Send for MetadataQueryResults
impl Sync for MetadataQueryResults
impl Unpin for MetadataQueryResults
impl UnsafeUnpin for MetadataQueryResults
impl UnwindSafe for MetadataQueryResults
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