pub struct ProjectListResponse {
pub object: String,
pub data: Vec<Project>,
pub first_id: String,
pub last_id: String,
pub has_more: String,
}
Expand description
A list of Project objects.
Fields§
§object: String
§data: Vec<Project>
§first_id: String
§last_id: String
§has_more: String
Trait Implementations§
Source§impl Clone for ProjectListResponse
impl Clone for ProjectListResponse
Source§fn clone(&self) -> ProjectListResponse
fn clone(&self) -> ProjectListResponse
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 ProjectListResponse
impl Debug for ProjectListResponse
Source§impl<'de> Deserialize<'de> for ProjectListResponse
impl<'de> Deserialize<'de> for ProjectListResponse
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 ProjectListResponse
impl PartialEq for ProjectListResponse
Source§impl Serialize for ProjectListResponse
impl Serialize for ProjectListResponse
impl StructuralPartialEq for ProjectListResponse
Auto Trait Implementations§
impl Freeze for ProjectListResponse
impl RefUnwindSafe for ProjectListResponse
impl Send for ProjectListResponse
impl Sync for ProjectListResponse
impl Unpin for ProjectListResponse
impl UnwindSafe for ProjectListResponse
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