pub struct ListMissionsResponse {
pub items: Vec<Mission>,
pub total: i64,
}Expand description
ListMissionsResponse model.
Fields§
§items: Vec<Mission>§total: i64Length of items in this response, not a tenant-wide count.
Trait Implementations§
Source§impl Clone for ListMissionsResponse
impl Clone for ListMissionsResponse
Source§fn clone(&self) -> ListMissionsResponse
fn clone(&self) -> ListMissionsResponse
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 ListMissionsResponse
impl Debug for ListMissionsResponse
Source§impl Default for ListMissionsResponse
impl Default for ListMissionsResponse
Source§fn default() -> ListMissionsResponse
fn default() -> ListMissionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListMissionsResponse
impl<'de> Deserialize<'de> for ListMissionsResponse
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 ListMissionsResponse
impl PartialEq for ListMissionsResponse
Source§impl Serialize for ListMissionsResponse
impl Serialize for ListMissionsResponse
impl StructuralPartialEq for ListMissionsResponse
Auto Trait Implementations§
impl Freeze for ListMissionsResponse
impl RefUnwindSafe for ListMissionsResponse
impl Send for ListMissionsResponse
impl Sync for ListMissionsResponse
impl Unpin for ListMissionsResponse
impl UnsafeUnpin for ListMissionsResponse
impl UnwindSafe for ListMissionsResponse
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