pub struct ProjectListResponse {
pub data: Vec<Project>,
pub first_id: String,
pub last_id: String,
pub has_more: bool,
}
Fields§
§data: Vec<Project>
§first_id: String
§last_id: String
§has_more: bool
Implementations§
Source§impl ProjectListResponse
impl ProjectListResponse
Sourcepub fn builder() -> ProjectListResponseBuilder<((), (), (), ())>
pub fn builder() -> ProjectListResponseBuilder<((), (), (), ())>
Create a builder for building ProjectListResponse
.
On the builder, call .data(...)
, .first_id(...)
, .last_id(...)
, .has_more(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ProjectListResponse
.
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