#[repr(i32)]pub enum NamespaceKind {
Unspecified = 0,
User = 1,
Org = 2,
Team = 3,
}Expand description
Namespace kinds in the hosted control plane. USER namespaces are
per-account and auto-created at first sign-in; ORG and TEAM are
explicit organisational containers.
Variants§
Implementations§
Source§impl NamespaceKind
impl NamespaceKind
Source§impl NamespaceKind
impl NamespaceKind
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for NamespaceKind
impl Clone for NamespaceKind
Source§fn clone(&self) -> NamespaceKind
fn clone(&self) -> NamespaceKind
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 moreimpl Copy for NamespaceKind
Source§impl Debug for NamespaceKind
impl Debug for NamespaceKind
Source§impl Default for NamespaceKind
impl Default for NamespaceKind
Source§fn default() -> NamespaceKind
fn default() -> NamespaceKind
Returns the “default value” for a type. Read more
impl Eq for NamespaceKind
Source§impl From<NamespaceKind> for i32
impl From<NamespaceKind> for i32
Source§fn from(value: NamespaceKind) -> i32
fn from(value: NamespaceKind) -> i32
Converts to this type from the input type.
Source§impl Hash for NamespaceKind
impl Hash for NamespaceKind
Source§impl Ord for NamespaceKind
impl Ord for NamespaceKind
Source§fn cmp(&self, other: &NamespaceKind) -> Ordering
fn cmp(&self, other: &NamespaceKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NamespaceKind
impl PartialEq for NamespaceKind
Source§impl PartialOrd for NamespaceKind
impl PartialOrd for NamespaceKind
impl StructuralPartialEq for NamespaceKind
Source§impl TryFrom<i32> for NamespaceKind
impl TryFrom<i32> for NamespaceKind
Source§type Error = UnknownEnumValue
type Error = UnknownEnumValue
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<NamespaceKind, UnknownEnumValue>
fn try_from(value: i32) -> Result<NamespaceKind, UnknownEnumValue>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for NamespaceKind
impl RefUnwindSafe for NamespaceKind
impl Send for NamespaceKind
impl Sync for NamespaceKind
impl Unpin for NamespaceKind
impl UnsafeUnpin for NamespaceKind
impl UnwindSafe for NamespaceKind
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