pub struct GetRepositoriesResult {
pub repositories: Vec<Repository>,
pub total: u32,
pub offset: u32,
pub limit: u32,
}Fields§
§repositories: Vec<Repository>§total: u32The total number of repositories that matched the filter.
offset: u32§limit: u32Trait Implementations§
Source§impl Clone for GetRepositoriesResult
impl Clone for GetRepositoriesResult
Source§fn clone(&self) -> GetRepositoriesResult
fn clone(&self) -> GetRepositoriesResult
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 GetRepositoriesResult
impl Debug for GetRepositoriesResult
Source§impl<'de> Deserialize<'de> for GetRepositoriesResult
impl<'de> Deserialize<'de> for GetRepositoriesResult
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
Auto Trait Implementations§
impl Freeze for GetRepositoriesResult
impl RefUnwindSafe for GetRepositoriesResult
impl Send for GetRepositoriesResult
impl Sync for GetRepositoriesResult
impl Unpin for GetRepositoriesResult
impl UnwindSafe for GetRepositoriesResult
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