pub struct TagGroupEntry {
pub name: String,
pub description: Option<String>,
pub one_per_topic: bool,
pub parent_tag: Option<String>,
pub permissions: Option<BTreeMap<String, String>>,
pub tags: Vec<String>,
}Fields§
§name: String§description: Option<String>§one_per_topic: bool§parent_tag: Option<String>§permissions: Option<BTreeMap<String, String>>Trait Implementations§
Source§impl Clone for TagGroupEntry
impl Clone for TagGroupEntry
Source§fn clone(&self) -> TagGroupEntry
fn clone(&self) -> TagGroupEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TagGroupEntry
impl Debug for TagGroupEntry
Source§impl<'de> Deserialize<'de> for TagGroupEntry
impl<'de> Deserialize<'de> for TagGroupEntry
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
Auto Trait Implementations§
impl Freeze for TagGroupEntry
impl RefUnwindSafe for TagGroupEntry
impl Send for TagGroupEntry
impl Sync for TagGroupEntry
impl Unpin for TagGroupEntry
impl UnsafeUnpin for TagGroupEntry
impl UnwindSafe for TagGroupEntry
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