pub struct TapeDriveGetReadLabelResponseData {
pub ctime: i64,
pub encryption_key_fingerprint: Option<String>,
pub label_text: String,
pub media_set_ctime: Option<i64>,
pub media_set_uuid: Option<String>,
pub pool: Option<String>,
pub seq_nr: Option<i64>,
pub uuid: String,
}Fields§
§ctime: i64Creation time stamp
encryption_key_fingerprint: Option<String>Encryption key fingerprint
label_text: StringMedia label text (or Barcode)
media_set_ctime: Option<i64>MediaSet Creation time stamp
media_set_uuid: Option<String>MediaSet Uuid (We use the all-zero Uuid to reserve an empty media for a specific pool).
pool: Option<String>MediaSet Pool
seq_nr: Option<i64>MediaSet media sequence number
uuid: StringMedia Uuid.
Implementations§
Trait Implementations§
Source§impl Clone for TapeDriveGetReadLabelResponseData
impl Clone for TapeDriveGetReadLabelResponseData
Source§fn clone(&self) -> TapeDriveGetReadLabelResponseData
fn clone(&self) -> TapeDriveGetReadLabelResponseData
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 Default for TapeDriveGetReadLabelResponseData
impl Default for TapeDriveGetReadLabelResponseData
Source§fn default() -> TapeDriveGetReadLabelResponseData
fn default() -> TapeDriveGetReadLabelResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TapeDriveGetReadLabelResponseData
impl<'de> Deserialize<'de> for TapeDriveGetReadLabelResponseData
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 TapeDriveGetReadLabelResponseData
impl PartialEq for TapeDriveGetReadLabelResponseData
Source§fn eq(&self, other: &TapeDriveGetReadLabelResponseData) -> bool
fn eq(&self, other: &TapeDriveGetReadLabelResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TapeDriveGetReadLabelResponseData
Auto Trait Implementations§
impl Freeze for TapeDriveGetReadLabelResponseData
impl RefUnwindSafe for TapeDriveGetReadLabelResponseData
impl Send for TapeDriveGetReadLabelResponseData
impl Sync for TapeDriveGetReadLabelResponseData
impl Unpin for TapeDriveGetReadLabelResponseData
impl UnsafeUnpin for TapeDriveGetReadLabelResponseData
impl UnwindSafe for TapeDriveGetReadLabelResponseData
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