pub struct AssetPropertyTimestamp {
pub offset_in_nanos: Option<String>,
pub time_in_seconds: String,
}Expand description
An asset property timestamp entry containing the following information.
Fields§
§offset_in_nanos: Option<String>Optional. A string that contains the nanosecond time offset. Accepts substitution templates.
time_in_seconds: StringA string that contains the time in seconds since epoch. Accepts substitution templates.
Trait Implementations§
Source§impl Clone for AssetPropertyTimestamp
impl Clone for AssetPropertyTimestamp
Source§fn clone(&self) -> AssetPropertyTimestamp
fn clone(&self) -> AssetPropertyTimestamp
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 AssetPropertyTimestamp
impl Debug for AssetPropertyTimestamp
Source§impl Default for AssetPropertyTimestamp
impl Default for AssetPropertyTimestamp
Source§fn default() -> AssetPropertyTimestamp
fn default() -> AssetPropertyTimestamp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetPropertyTimestamp
impl<'de> Deserialize<'de> for AssetPropertyTimestamp
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 AssetPropertyTimestamp
impl PartialEq for AssetPropertyTimestamp
Source§impl Serialize for AssetPropertyTimestamp
impl Serialize for AssetPropertyTimestamp
impl StructuralPartialEq for AssetPropertyTimestamp
Auto Trait Implementations§
impl Freeze for AssetPropertyTimestamp
impl RefUnwindSafe for AssetPropertyTimestamp
impl Send for AssetPropertyTimestamp
impl Sync for AssetPropertyTimestamp
impl Unpin for AssetPropertyTimestamp
impl UnwindSafe for AssetPropertyTimestamp
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