Struct samling::StyleFilters
source · pub struct StyleFilters {
pub refs: Option<Vec<Ref<Style>>>,
pub pricelists: Option<Vec<Ref<PriceList>>>,
pub categories: Option<Vec<Ref<Category>>>,
pub numbers: Option<Vec<String>>,
pub service_item: Option<bool>,
pub core: Option<bool>,
pub new_styles: Option<bool>,
pub new_colors: Option<bool>,
pub country_of_origin: Option<Vec<String>>,
pub status: Option<Vec<String>>,
}Fields§
§refs: Option<Vec<Ref<Style>>>§pricelists: Option<Vec<Ref<PriceList>>>§categories: Option<Vec<Ref<Category>>>§numbers: Option<Vec<String>>§service_item: Option<bool>§core: Option<bool>§new_styles: Option<bool>§new_colors: Option<bool>§country_of_origin: Option<Vec<String>>§status: Option<Vec<String>>Trait Implementations§
source§impl Clone for StyleFilters
impl Clone for StyleFilters
source§fn clone(&self) -> StyleFilters
fn clone(&self) -> StyleFilters
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 StyleFilters
impl Debug for StyleFilters
source§impl Default for StyleFilters
impl Default for StyleFilters
source§fn default() -> StyleFilters
fn default() -> StyleFilters
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StyleFilterswhere
StyleFilters: Default,
impl<'de> Deserialize<'de> for StyleFilterswhere
StyleFilters: Default,
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 StyleFilters
impl Filters for StyleFilters
type Resolved = ResolvedStyleFilters
fn resolve<'life0, 'async_trait>(
self,
client: &'life0 impl 'async_trait + GenericClient,
organization_id: Id<Organization>
) -> Pin<Box<dyn Future<Output = Result<ResolvedStyleFilters>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
source§impl<S> FromRequestParts<S> for StyleFilterswhere
S: Send + Sync,
impl<S> FromRequestParts<S> for StyleFilterswhere
S: Send + Sync,
source§impl JsonSchema for StyleFilters
impl JsonSchema for StyleFilters
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