pub struct GroupLabel {
pub text: Option<String>,
pub title: Option<String>,
pub type: Option<Type>,
}
Expand description
GroupLabel : A group label.
Fields§
§text: Option<String>
The group label name.
title: Option<String>
The title of the group label.
type: Option<Type>
The type of the group label.
Implementations§
Source§impl GroupLabel
impl GroupLabel
Sourcepub fn new() -> GroupLabel
pub fn new() -> GroupLabel
A group label.
Trait Implementations§
Source§impl Clone for GroupLabel
impl Clone for GroupLabel
Source§fn clone(&self) -> GroupLabel
fn clone(&self) -> GroupLabel
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 GroupLabel
impl Debug for GroupLabel
Source§impl Default for GroupLabel
impl Default for GroupLabel
Source§fn default() -> GroupLabel
fn default() -> GroupLabel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupLabel
impl<'de> Deserialize<'de> for GroupLabel
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 GroupLabel
impl PartialEq for GroupLabel
Source§impl Serialize for GroupLabel
impl Serialize for GroupLabel
impl StructuralPartialEq for GroupLabel
Auto Trait Implementations§
impl Freeze for GroupLabel
impl RefUnwindSafe for GroupLabel
impl Send for GroupLabel
impl Sync for GroupLabel
impl Unpin for GroupLabel
impl UnwindSafe for GroupLabel
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