pub struct Cosigner {
pub archived: bool,
pub id: Uuid,
pub name: Option<Option<String>>,
}
Fields§
§archived: bool
Whether the cosigner is archived
id: Uuid
The unique identifier of the cosigner
name: Option<Option<String>>
The name of the cosigner
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cosigner
impl<'de> Deserialize<'de> for Cosigner
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
impl StructuralPartialEq for Cosigner
Auto Trait Implementations§
impl Freeze for Cosigner
impl RefUnwindSafe for Cosigner
impl Send for Cosigner
impl Sync for Cosigner
impl Unpin for Cosigner
impl UnwindSafe for Cosigner
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