pub struct StakeholdersItem {
pub description: Option<String>,
pub type_: Option<String>,
}
Expand description
StakeholdersItem
JSON schema
{
"type": "object",
"properties": {
"Description": {
"type": "string"
},
"Type": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§description: Option<String>
§type_: Option<String>
Trait Implementations§
Source§impl Clone for StakeholdersItem
impl Clone for StakeholdersItem
Source§fn clone(&self) -> StakeholdersItem
fn clone(&self) -> StakeholdersItem
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 StakeholdersItem
impl Debug for StakeholdersItem
Source§impl<'de> Deserialize<'de> for StakeholdersItem
impl<'de> Deserialize<'de> for StakeholdersItem
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<&StakeholdersItem> for StakeholdersItem
impl From<&StakeholdersItem> for StakeholdersItem
Source§fn from(value: &StakeholdersItem) -> Self
fn from(value: &StakeholdersItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StakeholdersItem
impl RefUnwindSafe for StakeholdersItem
impl Send for StakeholdersItem
impl Sync for StakeholdersItem
impl Unpin for StakeholdersItem
impl UnwindSafe for StakeholdersItem
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