pub struct OptionData {
pub created_at: Option<Datetime>,
pub created_by: Did,
pub description: Option<String>,
pub did: Did,
pub key: Nsid,
pub last_updated_by: Did,
pub manager_role: Option<String>,
pub scope: String,
pub updated_at: Option<Datetime>,
pub value: Unknown,
}
Available on crate feature
namespace-toolsozone
only.Fields§
§created_at: Option<Datetime>
§created_by: Did
§description: Option<String>
§did: Did
§key: Nsid
§last_updated_by: Did
§manager_role: Option<String>
§scope: String
§updated_at: Option<Datetime>
§value: Unknown
Trait Implementations§
Source§impl Clone for OptionData
impl Clone for OptionData
Source§fn clone(&self) -> OptionData
fn clone(&self) -> OptionData
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 OptionData
impl Debug for OptionData
Source§impl<'de> Deserialize<'de> for OptionData
impl<'de> Deserialize<'de> for OptionData
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 PartialEq for OptionData
impl PartialEq for OptionData
Source§impl Serialize for OptionData
impl Serialize for OptionData
impl Eq for OptionData
impl StructuralPartialEq for OptionData
Auto Trait Implementations§
impl Freeze for OptionData
impl RefUnwindSafe for OptionData
impl Send for OptionData
impl Sync for OptionData
impl Unpin for OptionData
impl UnwindSafe for OptionData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.