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