pub struct ListReposResponse {
pub repos: Vec<Repo>,
pub next_cursor: Option<String>,
pub has_more: bool,
}Expand description
Paginated list of repositories.
Fields§
§repos: Vec<Repo>The repositories in this page.
next_cursor: Option<String>Cursor for the next page, if more results exist.
has_more: boolWhether more results are available.
Trait Implementations§
Source§impl Clone for ListReposResponse
impl Clone for ListReposResponse
Source§fn clone(&self) -> ListReposResponse
fn clone(&self) -> ListReposResponse
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 ListReposResponse
impl Debug for ListReposResponse
Source§impl<'de> Deserialize<'de> for ListReposResponse
impl<'de> Deserialize<'de> for ListReposResponse
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 Paginated for ListReposResponse
impl Paginated for ListReposResponse
Auto Trait Implementations§
impl Freeze for ListReposResponse
impl RefUnwindSafe for ListReposResponse
impl Send for ListReposResponse
impl Sync for ListReposResponse
impl Unpin for ListReposResponse
impl UnwindSafe for ListReposResponse
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