pub enum WorkspaceSummaryHostType {
GitHub,
Ado,
Unknown,
}Expand description
Repository host type, if known
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
GitHub
Workspace summary repository is hosted on GitHub.
Ado
Workspace summary repository is hosted on Azure DevOps.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for WorkspaceSummaryHostType
impl Clone for WorkspaceSummaryHostType
Source§fn clone(&self) -> WorkspaceSummaryHostType
fn clone(&self) -> WorkspaceSummaryHostType
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 WorkspaceSummaryHostType
impl Debug for WorkspaceSummaryHostType
Source§impl Default for WorkspaceSummaryHostType
impl Default for WorkspaceSummaryHostType
Source§fn default() -> WorkspaceSummaryHostType
fn default() -> WorkspaceSummaryHostType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkspaceSummaryHostType
impl<'de> Deserialize<'de> for WorkspaceSummaryHostType
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 Eq for WorkspaceSummaryHostType
Source§impl PartialEq for WorkspaceSummaryHostType
impl PartialEq for WorkspaceSummaryHostType
Source§fn eq(&self, other: &WorkspaceSummaryHostType) -> bool
fn eq(&self, other: &WorkspaceSummaryHostType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkspaceSummaryHostType
impl Serialize for WorkspaceSummaryHostType
impl StructuralPartialEq for WorkspaceSummaryHostType
Auto Trait Implementations§
impl Freeze for WorkspaceSummaryHostType
impl RefUnwindSafe for WorkspaceSummaryHostType
impl Send for WorkspaceSummaryHostType
impl Sync for WorkspaceSummaryHostType
impl Unpin for WorkspaceSummaryHostType
impl UnsafeUnpin for WorkspaceSummaryHostType
impl UnwindSafe for WorkspaceSummaryHostType
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