pub struct CollectionOwnershipResponse {
pub id: String,
pub name: Option<String>,
pub symbol: Option<String>,
pub standard: Option<String>,
pub blockchain_descriptor: BlockchainDescriptor,
pub contract_address: Option<String>,
}
Fields§
§id: String
Fireblocks collection id
name: Option<String>
Collection name
symbol: Option<String>
Collection symbol
standard: Option<String>
Collection contract standard
blockchain_descriptor: BlockchainDescriptor
Collection’s blockchain
contract_address: Option<String>
Collection contract standard
Implementations§
Source§impl CollectionOwnershipResponse
impl CollectionOwnershipResponse
pub fn new( id: String, blockchain_descriptor: BlockchainDescriptor, ) -> CollectionOwnershipResponse
Trait Implementations§
Source§impl Clone for CollectionOwnershipResponse
impl Clone for CollectionOwnershipResponse
Source§fn clone(&self) -> CollectionOwnershipResponse
fn clone(&self) -> CollectionOwnershipResponse
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 CollectionOwnershipResponse
impl Debug for CollectionOwnershipResponse
Source§impl Default for CollectionOwnershipResponse
impl Default for CollectionOwnershipResponse
Source§fn default() -> CollectionOwnershipResponse
fn default() -> CollectionOwnershipResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CollectionOwnershipResponse
impl<'de> Deserialize<'de> for CollectionOwnershipResponse
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 CollectionOwnershipResponse
Auto Trait Implementations§
impl Freeze for CollectionOwnershipResponse
impl RefUnwindSafe for CollectionOwnershipResponse
impl Send for CollectionOwnershipResponse
impl Sync for CollectionOwnershipResponse
impl Unpin for CollectionOwnershipResponse
impl UnwindSafe for CollectionOwnershipResponse
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