pub struct StatusProjectUsagePage {
pub next_page_token: Option<String>,
pub values: Option<Vec<StatusProjectUsage>>,
}
Expand description
StatusProjectUsagePage : A page of projects.
Fields§
§next_page_token: Option<String>
Page token for the next page of issue type usages.
values: Option<Vec<StatusProjectUsage>>
The list of projects.
Implementations§
Source§impl StatusProjectUsagePage
impl StatusProjectUsagePage
Sourcepub fn new() -> StatusProjectUsagePage
pub fn new() -> StatusProjectUsagePage
A page of projects.
Trait Implementations§
Source§impl Clone for StatusProjectUsagePage
impl Clone for StatusProjectUsagePage
Source§fn clone(&self) -> StatusProjectUsagePage
fn clone(&self) -> StatusProjectUsagePage
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 StatusProjectUsagePage
impl Debug for StatusProjectUsagePage
Source§impl Default for StatusProjectUsagePage
impl Default for StatusProjectUsagePage
Source§fn default() -> StatusProjectUsagePage
fn default() -> StatusProjectUsagePage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatusProjectUsagePage
impl<'de> Deserialize<'de> for StatusProjectUsagePage
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 StatusProjectUsagePage
impl PartialEq for StatusProjectUsagePage
Source§impl Serialize for StatusProjectUsagePage
impl Serialize for StatusProjectUsagePage
impl StructuralPartialEq for StatusProjectUsagePage
Auto Trait Implementations§
impl Freeze for StatusProjectUsagePage
impl RefUnwindSafe for StatusProjectUsagePage
impl Send for StatusProjectUsagePage
impl Sync for StatusProjectUsagePage
impl Unpin for StatusProjectUsagePage
impl UnwindSafe for StatusProjectUsagePage
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