pub struct RecordDescriptorInput {Show 21 fields
pub record_profile: String,
pub stream_byte_length: Option<usize>,
pub generation_version: Option<String>,
pub payload_encoding: Option<String>,
pub title: Option<String>,
pub artist: Option<String>,
pub release_id: Option<String>,
pub catalog_number: Option<String>,
pub label: Option<String>,
pub artwork_credit: Option<String>,
pub license: Option<String>,
pub canonical_url: Option<String>,
pub created_at: Option<String>,
pub arbitrary_metadata: Option<String>,
pub signed_release_manifest: Option<String>,
pub signature_algorithm: Option<String>,
pub signature_key_id: Option<String>,
pub signature: Option<String>,
pub manifest_sha256: Option<String>,
pub stego_sidecar_descriptor: Option<Vec<u8>>,
pub chain_registration_receipt: Option<String>,
}Fields§
§record_profile: String§stream_byte_length: Option<usize>§generation_version: Option<String>§payload_encoding: Option<String>§title: Option<String>§artist: Option<String>§release_id: Option<String>§catalog_number: Option<String>§label: Option<String>§artwork_credit: Option<String>§license: Option<String>§canonical_url: Option<String>§created_at: Option<String>§arbitrary_metadata: Option<String>§signed_release_manifest: Option<String>§signature_algorithm: Option<String>§signature_key_id: Option<String>§signature: Option<String>§manifest_sha256: Option<String>§stego_sidecar_descriptor: Option<Vec<u8>>§chain_registration_receipt: Option<String>Trait Implementations§
Source§impl Clone for RecordDescriptorInput
impl Clone for RecordDescriptorInput
Source§fn clone(&self) -> RecordDescriptorInput
fn clone(&self) -> RecordDescriptorInput
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 RecordDescriptorInput
impl Debug for RecordDescriptorInput
Source§impl Default for RecordDescriptorInput
impl Default for RecordDescriptorInput
Source§fn default() -> RecordDescriptorInput
fn default() -> RecordDescriptorInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordDescriptorInput
impl<'de> Deserialize<'de> for RecordDescriptorInput
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
Auto Trait Implementations§
impl Freeze for RecordDescriptorInput
impl RefUnwindSafe for RecordDescriptorInput
impl Send for RecordDescriptorInput
impl Sync for RecordDescriptorInput
impl Unpin for RecordDescriptorInput
impl UnsafeUnpin for RecordDescriptorInput
impl UnwindSafe for RecordDescriptorInput
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