pub struct ControllerServiceEntity {
pub bulletins: Option<Vec<BulletinEntity>>,
pub component: Option<ControllerServiceDto>,
pub disconnected_node_acknowledged: Option<bool>,
pub id: Option<String>,
pub operate_permissions: Option<PermissionsDto>,
pub parent_group_id: Option<String>,
pub permissions: Option<PermissionsDto>,
pub position: Option<PositionDto>,
pub revision: Option<RevisionDto>,
pub status: Option<ControllerServiceStatusDto>,
pub uri: Option<String>,
}Fields§
§bulletins: Option<Vec<BulletinEntity>>§component: Option<ControllerServiceDto>§disconnected_node_acknowledged: Option<bool>§id: Option<String>§operate_permissions: Option<PermissionsDto>§parent_group_id: Option<String>§permissions: Option<PermissionsDto>§position: Option<PositionDto>§revision: Option<RevisionDto>§status: Option<ControllerServiceStatusDto>§uri: Option<String>Trait Implementations§
Source§impl Clone for ControllerServiceEntity
impl Clone for ControllerServiceEntity
Source§fn clone(&self) -> ControllerServiceEntity
fn clone(&self) -> ControllerServiceEntity
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 ControllerServiceEntity
impl Debug for ControllerServiceEntity
Source§impl Default for ControllerServiceEntity
impl Default for ControllerServiceEntity
Source§fn default() -> ControllerServiceEntity
fn default() -> ControllerServiceEntity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ControllerServiceEntity
impl<'de> Deserialize<'de> for ControllerServiceEntity
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 From<ControllerServiceEntity> for ControllerServiceEntity
impl From<ControllerServiceEntity> for ControllerServiceEntity
Source§fn from(v: ControllerServiceEntity) -> Self
fn from(v: ControllerServiceEntity) -> Self
Converts to this type from the input type.
Source§impl From<ControllerServiceEntity> for ControllerServiceEntity
impl From<ControllerServiceEntity> for ControllerServiceEntity
Source§fn from(v: ControllerServiceEntity) -> Self
fn from(v: ControllerServiceEntity) -> Self
Converts to this type from the input type.
Source§impl From<ControllerServiceEntity> for ControllerServiceEntity
impl From<ControllerServiceEntity> for ControllerServiceEntity
Source§fn from(v: ControllerServiceEntity) -> Self
fn from(v: ControllerServiceEntity) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ControllerServiceEntity
impl RefUnwindSafe for ControllerServiceEntity
impl Send for ControllerServiceEntity
impl Sync for ControllerServiceEntity
impl Unpin for ControllerServiceEntity
impl UnsafeUnpin for ControllerServiceEntity
impl UnwindSafe for ControllerServiceEntity
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