pub struct RecordDescriptor {Show 24 fields
pub version: u8,
pub checksum_protected: bool,
pub b_value: f64,
pub record_profile: Option<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<String>,
pub chain_registration_receipt: Option<String>,
}Fields§
§version: u8§checksum_protected: bool§b_value: f64§record_profile: Option<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<String>§chain_registration_receipt: Option<String>Trait Implementations§
Source§impl Clone for RecordDescriptor
impl Clone for RecordDescriptor
Source§fn clone(&self) -> RecordDescriptor
fn clone(&self) -> RecordDescriptor
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 RecordDescriptor
impl Debug for RecordDescriptor
Source§impl<'de> Deserialize<'de> for RecordDescriptor
impl<'de> Deserialize<'de> for RecordDescriptor
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 RecordDescriptor
impl RefUnwindSafe for RecordDescriptor
impl Send for RecordDescriptor
impl Sync for RecordDescriptor
impl Unpin for RecordDescriptor
impl UnsafeUnpin for RecordDescriptor
impl UnwindSafe for RecordDescriptor
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