pub struct AccountParent { /* private fields */ }
Implementations§
Source§impl AccountParent
impl AccountParent
pub fn new() -> AccountParent
pub fn set_account_id(&mut self, account_id: String)
pub fn with_account_id(self, account_id: String) -> AccountParent
pub fn account_id(&self) -> Option<&String>
pub fn reset_account_id(&mut self)
pub fn set_is_m_child(&mut self, is_m_child: bool)
pub fn with_is_m_child(self, is_m_child: bool) -> AccountParent
pub fn is_m_child(&self) -> Option<&bool>
pub fn reset_is_m_child(&mut self)
pub fn set_is_m_parent(&mut self, is_m_parent: bool)
pub fn with_is_m_parent(self, is_m_parent: bool) -> AccountParent
pub fn is_m_parent(&self) -> Option<&bool>
pub fn reset_is_m_parent(&mut self)
pub fn set_is_multiplex(&mut self, is_multiplex: bool)
pub fn with_is_multiplex(self, is_multiplex: bool) -> AccountParent
pub fn is_multiplex(&self) -> Option<&bool>
pub fn reset_is_multiplex(&mut self)
pub fn set_mmc(&mut self, mmc: Vec<String>)
pub fn with_mmc(self, mmc: Vec<String>) -> AccountParent
pub fn mmc(&self) -> Option<&Vec<String>>
pub fn reset_mmc(&mut self)
Trait Implementations§
Source§impl Debug for AccountParent
impl Debug for AccountParent
Source§impl<'de> Deserialize<'de> for AccountParent
impl<'de> Deserialize<'de> for AccountParent
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 AccountParent
impl RefUnwindSafe for AccountParent
impl Send for AccountParent
impl Sync for AccountParent
impl Unpin for AccountParent
impl UnwindSafe for AccountParent
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