pub struct TaskListEntry {
pub name: Option<String>,
pub status: Option<String>,
pub task_arn: Option<String>,
}
Expand description
Represents a single entry in a list of tasks. TaskListEntry
returns an array that contains a list of tasks when the ListTasks operation is called. A task includes the source and destination file systems to sync and the options to use for the tasks.
Fields§
§name: Option<String>
The name of the task.
status: Option<String>
The status of the task.
task_arn: Option<String>
The Amazon Resource Name (ARN) of the task.
Trait Implementations§
Source§impl Clone for TaskListEntry
impl Clone for TaskListEntry
Source§fn clone(&self) -> TaskListEntry
fn clone(&self) -> TaskListEntry
Returns a copy 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 TaskListEntry
impl Debug for TaskListEntry
Source§impl Default for TaskListEntry
impl Default for TaskListEntry
Source§fn default() -> TaskListEntry
fn default() -> TaskListEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskListEntry
impl<'de> Deserialize<'de> for TaskListEntry
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 TaskListEntry
impl PartialEq for TaskListEntry
impl StructuralPartialEq for TaskListEntry
Auto Trait Implementations§
impl Freeze for TaskListEntry
impl RefUnwindSafe for TaskListEntry
impl Send for TaskListEntry
impl Sync for TaskListEntry
impl Unpin for TaskListEntry
impl UnwindSafe for TaskListEntry
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