pub struct Location {
pub address: Option<Address>,
pub email_addresses: Option<Vec<String>>,
pub links: Option<Vec<Link>>,
pub props: Option<Vec<Property>>,
pub remarks: Option<String>,
pub telephone_numbers: Option<Vec<TelephoneNumber>>,
pub title: Option<String>,
pub urls: Option<Vec<String>>,
pub uuid: String,
}
Expand description
A physical point of presence, which may be associated with people, organizations, or other concepts within the current or linked OSCAL document.
Fields§
§address: Option<Address>
§email_addresses: Option<Vec<String>>
§links: Option<Vec<Link>>
§props: Option<Vec<Property>>
§remarks: Option<String>
§telephone_numbers: Option<Vec<TelephoneNumber>>
§title: Option<String>
A name given to the location, which may be used by a tool for display and navigation.
urls: Option<Vec<String>>
§uuid: String
A unique ID for the location, for reference.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Location
impl<'de> Deserialize<'de> for Location
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 Location
impl RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnwindSafe for Location
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