pub struct ListBranchesResponse {
pub branches: Vec<Branch>,
pub next_cursor: Option<String>,
pub has_more: bool,
}Expand description
Paginated list of branches.
Fields§
§branches: Vec<Branch>The branches 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 ListBranchesResponse
impl Clone for ListBranchesResponse
Source§fn clone(&self) -> ListBranchesResponse
fn clone(&self) -> ListBranchesResponse
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 ListBranchesResponse
impl Debug for ListBranchesResponse
Source§impl<'de> Deserialize<'de> for ListBranchesResponse
impl<'de> Deserialize<'de> for ListBranchesResponse
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 ListBranchesResponse
impl Paginated for ListBranchesResponse
Source§fn next_cursor(&self) -> Option<&str>
fn next_cursor(&self) -> Option<&str>
Returns the cursor for the next page, if any.
Auto Trait Implementations§
impl Freeze for ListBranchesResponse
impl RefUnwindSafe for ListBranchesResponse
impl Send for ListBranchesResponse
impl Sync for ListBranchesResponse
impl Unpin for ListBranchesResponse
impl UnwindSafe for ListBranchesResponse
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