pub struct Identifier {
pub durable_name: Option<Option<String>>,
pub durable_name_format: Option<Option<DurableNameFormat>>,
}Fields§
§durable_name: Option<Option<String>>The world-wide, persistent name of the resource.
This property shall contain the world-wide unique identifier for the resource. The string shall be
in the format described by the value in the DurableNameFormat property.
durable_name_format: Option<Option<DurableNameFormat>>The format of the durable name property.
This property shall represent the format of the DurableName property.
Trait Implementations§
Source§impl Debug for Identifier
impl Debug for Identifier
Source§impl<'de> Deserialize<'de> for Identifier
impl<'de> Deserialize<'de> for Identifier
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 Identifier
impl RefUnwindSafe for Identifier
impl Send for Identifier
impl Sync for Identifier
impl Unpin for Identifier
impl UnsafeUnpin for Identifier
impl UnwindSafe for Identifier
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