pub struct DecisionContact {
pub email: Option<String>,
pub name: Option<String>,
pub role: Option<String>,
}Expand description
Contact details for decision ownership
Fields§
§email: Option<String>Email address
name: Option<String>Contact name
role: Option<String>Role or team
Trait Implementations§
Source§impl Clone for DecisionContact
impl Clone for DecisionContact
Source§fn clone(&self) -> DecisionContact
fn clone(&self) -> DecisionContact
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 DecisionContact
impl Debug for DecisionContact
Source§impl Default for DecisionContact
impl Default for DecisionContact
Source§fn default() -> DecisionContact
fn default() -> DecisionContact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DecisionContact
impl<'de> Deserialize<'de> for DecisionContact
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 DecisionContact
impl PartialEq for DecisionContact
Source§impl Serialize for DecisionContact
impl Serialize for DecisionContact
impl StructuralPartialEq for DecisionContact
Auto Trait Implementations§
impl Freeze for DecisionContact
impl RefUnwindSafe for DecisionContact
impl Send for DecisionContact
impl Sync for DecisionContact
impl Unpin for DecisionContact
impl UnwindSafe for DecisionContact
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