pub struct BranchSummary {
pub branch_id: String,
pub database_id: Option<String>,
pub parent_branch_id: Option<String>,
pub state: Option<String>,
pub endpoint: Option<String>,
pub latest_epoch: Option<u64>,
}Fields§
§branch_id: String§database_id: Option<String>§parent_branch_id: Option<String>§state: Option<String>§endpoint: Option<String>§latest_epoch: Option<u64>Trait Implementations§
Source§impl Clone for BranchSummary
impl Clone for BranchSummary
Source§fn clone(&self) -> BranchSummary
fn clone(&self) -> BranchSummary
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 BranchSummary
impl Debug for BranchSummary
Source§impl<'de> Deserialize<'de> for BranchSummary
impl<'de> Deserialize<'de> for BranchSummary
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 BranchSummary
impl PartialEq for BranchSummary
Source§fn eq(&self, other: &BranchSummary) -> bool
fn eq(&self, other: &BranchSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BranchSummary
impl Serialize for BranchSummary
impl StructuralPartialEq for BranchSummary
Auto Trait Implementations§
impl Freeze for BranchSummary
impl RefUnwindSafe for BranchSummary
impl Send for BranchSummary
impl Sync for BranchSummary
impl Unpin for BranchSummary
impl UnsafeUnpin for BranchSummary
impl UnwindSafe for BranchSummary
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