pub struct CaptableUpdated {
pub message: Option<String>,
pub success: Option<bool>,
}Fields§
§message: Option<String>Message is the human sentence the cap table wrote, e.g. "Company updated".
success: Option<bool>Success is true when the update was applied.
Implementations§
Source§impl CaptableUpdated
impl CaptableUpdated
pub fn new() -> CaptableUpdated
Trait Implementations§
Source§impl Clone for CaptableUpdated
impl Clone for CaptableUpdated
Source§fn clone(&self) -> CaptableUpdated
fn clone(&self) -> CaptableUpdated
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CaptableUpdated
impl Debug for CaptableUpdated
Source§impl Default for CaptableUpdated
impl Default for CaptableUpdated
Source§fn default() -> CaptableUpdated
fn default() -> CaptableUpdated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CaptableUpdated
impl<'de> Deserialize<'de> for CaptableUpdated
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 CaptableUpdated
impl PartialEq for CaptableUpdated
Source§impl Serialize for CaptableUpdated
impl Serialize for CaptableUpdated
impl StructuralPartialEq for CaptableUpdated
Auto Trait Implementations§
impl Freeze for CaptableUpdated
impl RefUnwindSafe for CaptableUpdated
impl Send for CaptableUpdated
impl Sync for CaptableUpdated
impl Unpin for CaptableUpdated
impl UnsafeUnpin for CaptableUpdated
impl UnwindSafe for CaptableUpdated
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