pub struct ListSessionBranchesResponse {
pub session_id: String,
pub branches: Vec<SessionBranch>,
pub active_branch: Option<String>,
pub total: i64,
}Expand description
ListSessionBranchesResponse model.
Fields§
§session_id: String§branches: Vec<SessionBranch>§active_branch: Option<String>§total: i64Trait Implementations§
Source§impl Clone for ListSessionBranchesResponse
impl Clone for ListSessionBranchesResponse
Source§fn clone(&self) -> ListSessionBranchesResponse
fn clone(&self) -> ListSessionBranchesResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListSessionBranchesResponse
impl Debug for ListSessionBranchesResponse
Source§impl Default for ListSessionBranchesResponse
impl Default for ListSessionBranchesResponse
Source§fn default() -> ListSessionBranchesResponse
fn default() -> ListSessionBranchesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListSessionBranchesResponse
impl<'de> Deserialize<'de> for ListSessionBranchesResponse
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
impl StructuralPartialEq for ListSessionBranchesResponse
Auto Trait Implementations§
impl Freeze for ListSessionBranchesResponse
impl RefUnwindSafe for ListSessionBranchesResponse
impl Send for ListSessionBranchesResponse
impl Sync for ListSessionBranchesResponse
impl Unpin for ListSessionBranchesResponse
impl UnsafeUnpin for ListSessionBranchesResponse
impl UnwindSafe for ListSessionBranchesResponse
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