pub struct BriefClusterGroup {
pub id: Option<i32>,
pub url: Option<String>,
pub display: Option<String>,
pub name: String,
pub slug: String,
pub description: Option<String>,
pub cluster_count: Option<i64>,
}Expand description
BriefClusterGroup : Adds support for custom fields and tags.
Fields§
§id: Option<i32>§url: Option<String>§display: Option<String>§name: String§slug: String§description: Option<String>§cluster_count: Option<i64>Implementations§
Source§impl BriefClusterGroup
impl BriefClusterGroup
Sourcepub fn new(name: String, slug: String) -> BriefClusterGroup
pub fn new(name: String, slug: String) -> BriefClusterGroup
Adds support for custom fields and tags.
Trait Implementations§
Source§impl Clone for BriefClusterGroup
impl Clone for BriefClusterGroup
Source§fn clone(&self) -> BriefClusterGroup
fn clone(&self) -> BriefClusterGroup
Returns a duplicate 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 BriefClusterGroup
impl Debug for BriefClusterGroup
Source§impl Default for BriefClusterGroup
impl Default for BriefClusterGroup
Source§fn default() -> BriefClusterGroup
fn default() -> BriefClusterGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BriefClusterGroup
impl<'de> Deserialize<'de> for BriefClusterGroup
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 BriefClusterGroup
impl PartialEq for BriefClusterGroup
Source§impl Serialize for BriefClusterGroup
impl Serialize for BriefClusterGroup
impl StructuralPartialEq for BriefClusterGroup
Auto Trait Implementations§
impl Freeze for BriefClusterGroup
impl RefUnwindSafe for BriefClusterGroup
impl Send for BriefClusterGroup
impl Sync for BriefClusterGroup
impl Unpin for BriefClusterGroup
impl UnwindSafe for BriefClusterGroup
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