Struct samling::CollectionFilters
source · pub struct CollectionFilters {
pub styles: StyleFilters,
}Fields§
§styles: StyleFiltersTrait Implementations§
source§impl Clone for CollectionFilters
impl Clone for CollectionFilters
source§fn clone(&self) -> CollectionFilters
fn clone(&self) -> CollectionFilters
Returns a copy 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 CollectionFilters
impl Debug for CollectionFilters
source§impl Default for CollectionFilters
impl Default for CollectionFilters
source§fn default() -> CollectionFilters
fn default() -> CollectionFilters
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CollectionFilters
impl<'de> Deserialize<'de> for CollectionFilters
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 Filters for CollectionFilters
impl Filters for CollectionFilters
type Resolved = ResolvedCollectionFilters
fn resolve<'life0, 'async_trait>(
self,
client: &'life0 impl 'async_trait + GenericClient,
organization_id: Id<Organization>
) -> Pin<Box<dyn Future<Output = Result<Self::Resolved>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
source§impl JsonSchema for CollectionFilters
impl JsonSchema for CollectionFilters
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read more