pub struct AddCosignerResponse {
pub api_key_id: Uuid,
pub name: String,
pub existing_cosigner: Option<bool>,
pub pending_cosigner_id: Uuid,
}
Fields§
§api_key_id: Uuid
The id of the API key to be paired with the cosigner
name: String
The name of the cosigner
existing_cosigner: Option<bool>
Whether the cosigner already exists in another workspace
pending_cosigner_id: Uuid
The unique identifier of a pending cosigner
Implementations§
Trait Implementations§
Source§impl Clone for AddCosignerResponse
impl Clone for AddCosignerResponse
Source§fn clone(&self) -> AddCosignerResponse
fn clone(&self) -> AddCosignerResponse
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 AddCosignerResponse
impl Debug for AddCosignerResponse
Source§impl Default for AddCosignerResponse
impl Default for AddCosignerResponse
Source§fn default() -> AddCosignerResponse
fn default() -> AddCosignerResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddCosignerResponse
impl<'de> Deserialize<'de> for AddCosignerResponse
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 AddCosignerResponse
impl PartialEq for AddCosignerResponse
Source§impl Serialize for AddCosignerResponse
impl Serialize for AddCosignerResponse
impl StructuralPartialEq for AddCosignerResponse
Auto Trait Implementations§
impl Freeze for AddCosignerResponse
impl RefUnwindSafe for AddCosignerResponse
impl Send for AddCosignerResponse
impl Sync for AddCosignerResponse
impl Unpin for AddCosignerResponse
impl UnwindSafe for AddCosignerResponse
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