Struct samling::GroupSummary
source · pub struct GroupSummary {
pub id: Id<Group>,
pub slug: Slug<Group>,
pub external_id: Option<ExternalId<Group>>,
pub name: String,
pub description: String,
pub num_users: u32,
pub num_collections: u32,
pub num_price_lists: u32,
}Fields§
§id: Id<Group>§slug: Slug<Group>§external_id: Option<ExternalId<Group>>§name: String§description: String§num_users: u32§num_collections: u32§num_price_lists: u32Trait Implementations§
source§impl Clone for GroupSummary
impl Clone for GroupSummary
source§fn clone(&self) -> GroupSummary
fn clone(&self) -> GroupSummary
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 GroupSummary
impl Debug for GroupSummary
source§impl<'de> Deserialize<'de> for GroupSummary
impl<'de> Deserialize<'de> for GroupSummary
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 JsonSchema for GroupSummary
impl JsonSchema for GroupSummary
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