pub struct SystemImplementation {
pub components: Vec<Component>,
pub inventory_items: Option<Vec<InventoryItem>>,
pub leveraged_authorizations: Option<Vec<LeveragedAuthorization>>,
pub links: Option<Vec<Link>>,
pub props: Option<Vec<Property>>,
pub remarks: Option<String>,
pub users: Vec<SystemUser>,
}Expand description
Provides information as to how the system is implemented.
Fields§
§components: Vec<Component>§inventory_items: Option<Vec<InventoryItem>>§links: Option<Vec<Link>>§props: Option<Vec<Property>>§remarks: Option<String>§users: Vec<SystemUser>Trait Implementations§
Source§impl Clone for SystemImplementation
impl Clone for SystemImplementation
Source§fn clone(&self) -> SystemImplementation
fn clone(&self) -> SystemImplementation
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 SystemImplementation
impl Debug for SystemImplementation
Source§impl<'de> Deserialize<'de> for SystemImplementation
impl<'de> Deserialize<'de> for SystemImplementation
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 Display for SystemImplementation
impl Display for SystemImplementation
Source§impl From<&SystemImplementation> for SystemImplementation
impl From<&SystemImplementation> for SystemImplementation
Source§fn from(value: &SystemImplementation) -> Self
fn from(value: &SystemImplementation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SystemImplementation
impl PartialEq for SystemImplementation
Auto Trait Implementations§
impl Freeze for SystemImplementation
impl RefUnwindSafe for SystemImplementation
impl Send for SystemImplementation
impl Sync for SystemImplementation
impl Unpin for SystemImplementation
impl UnwindSafe for SystemImplementation
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