pub struct MetadataQuery {
pub from: String,
pub query: Option<String>,
pub query_params: Option<HashMap<String, Value>>,
pub ancestor_folder_id: String,
pub order_by: Option<Vec<MetadataQueryOrderBy>>,
pub limit: Option<i64>,
pub marker: Option<String>,
pub fields: Option<Vec<String>>,
}Fields§
§from: String§query: Option<String>§query_params: Option<HashMap<String, Value>>§ancestor_folder_id: String§order_by: Option<Vec<MetadataQueryOrderBy>>§limit: Option<i64>§marker: Option<String>§fields: Option<Vec<String>>Trait Implementations§
Source§impl Clone for MetadataQuery
impl Clone for MetadataQuery
Source§fn clone(&self) -> MetadataQuery
fn clone(&self) -> MetadataQuery
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 MetadataQuery
impl Debug for MetadataQuery
Source§impl Default for MetadataQuery
impl Default for MetadataQuery
Source§fn default() -> MetadataQuery
fn default() -> MetadataQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataQuery
impl<'de> Deserialize<'de> for MetadataQuery
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 MetadataQuery
impl PartialEq for MetadataQuery
Source§impl Serialize for MetadataQuery
impl Serialize for MetadataQuery
impl StructuralPartialEq for MetadataQuery
Auto Trait Implementations§
impl Freeze for MetadataQuery
impl RefUnwindSafe for MetadataQuery
impl Send for MetadataQuery
impl Sync for MetadataQuery
impl Unpin for MetadataQuery
impl UnsafeUnpin for MetadataQuery
impl UnwindSafe for MetadataQuery
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