pub struct TagGroupConfig {
pub name: String,
pub tags: Vec<String>,
pub update_rate_ms: u32,
}Expand description
Defines a named tag group with a polling interval.
Fields§
§name: String§update_rate_ms: u32Trait Implementations§
Source§impl Clone for TagGroupConfig
impl Clone for TagGroupConfig
Source§fn clone(&self) -> TagGroupConfig
fn clone(&self) -> TagGroupConfig
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 moreAuto Trait Implementations§
impl Freeze for TagGroupConfig
impl RefUnwindSafe for TagGroupConfig
impl Send for TagGroupConfig
impl Sync for TagGroupConfig
impl Unpin for TagGroupConfig
impl UnsafeUnpin for TagGroupConfig
impl UnwindSafe for TagGroupConfig
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