pub struct AdaptiveMtFile {
pub create_time: Option<DateTime<Utc>>,
pub display_name: Option<String>,
pub entry_count: Option<i32>,
pub name: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
An AdaptiveMtFile.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§create_time: Option<DateTime<Utc>>Output only. Timestamp when this file was created.
display_name: Option<String>The file’s display name.
entry_count: Option<i32>The number of entries that the file contains.
name: Option<String>Required. The resource name of the file, in form of projects/{project-number-or-id}/locations/{location_id}/adaptiveMtDatasets/{dataset}/adaptiveMtFiles/{file}
update_time: Option<DateTime<Utc>>Output only. Timestamp when this file was last updated.
Trait Implementations§
Source§impl Clone for AdaptiveMtFile
impl Clone for AdaptiveMtFile
Source§fn clone(&self) -> AdaptiveMtFile
fn clone(&self) -> AdaptiveMtFile
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 AdaptiveMtFile
impl Debug for AdaptiveMtFile
Source§impl Default for AdaptiveMtFile
impl Default for AdaptiveMtFile
Source§fn default() -> AdaptiveMtFile
fn default() -> AdaptiveMtFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdaptiveMtFile
impl<'de> Deserialize<'de> for AdaptiveMtFile
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 Serialize for AdaptiveMtFile
impl Serialize for AdaptiveMtFile
impl ResponseResult for AdaptiveMtFile
Auto Trait Implementations§
impl Freeze for AdaptiveMtFile
impl RefUnwindSafe for AdaptiveMtFile
impl Send for AdaptiveMtFile
impl Sync for AdaptiveMtFile
impl Unpin for AdaptiveMtFile
impl UnwindSafe for AdaptiveMtFile
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