pub struct GroupObjectFlagsConfig {
pub communication: bool,
pub read: bool,
pub write: bool,
pub transmit: bool,
pub update: bool,
}Expand description
Group object flags configuration.
Fields§
§communication: boolCommunication enabled.
read: boolRead enabled.
write: boolWrite enabled.
transmit: boolTransmit on change.
update: boolUpdate on receive.
Implementations§
Source§impl GroupObjectFlagsConfig
impl GroupObjectFlagsConfig
Sourcepub fn write_only() -> Self
pub fn write_only() -> Self
Create write-only flags.
Trait Implementations§
Source§impl Clone for GroupObjectFlagsConfig
impl Clone for GroupObjectFlagsConfig
Source§fn clone(&self) -> GroupObjectFlagsConfig
fn clone(&self) -> GroupObjectFlagsConfig
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 GroupObjectFlagsConfig
impl Debug for GroupObjectFlagsConfig
Source§impl Default for GroupObjectFlagsConfig
impl Default for GroupObjectFlagsConfig
Source§impl<'de> Deserialize<'de> for GroupObjectFlagsConfig
impl<'de> Deserialize<'de> for GroupObjectFlagsConfig
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 GroupObjectFlagsConfig
impl RefUnwindSafe for GroupObjectFlagsConfig
impl Send for GroupObjectFlagsConfig
impl Sync for GroupObjectFlagsConfig
impl Unpin for GroupObjectFlagsConfig
impl UnsafeUnpin for GroupObjectFlagsConfig
impl UnwindSafe for GroupObjectFlagsConfig
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