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