pub struct Projects {
pub results: Vec<Project>,
pub has_more: bool,
}Expand description
Model for Projects used with List operations.
Fields§
§results: Vec<Project>§has_more: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for Projects
impl<'de> Deserialize<'de> for Projects
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
impl StructuralPartialEq for Projects
Auto Trait Implementations§
impl Freeze for Projects
impl RefUnwindSafe for Projects
impl Send for Projects
impl Sync for Projects
impl Unpin for Projects
impl UnsafeUnpin for Projects
impl UnwindSafe for Projects
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