pub enum InstallationTargetType {
User,
Organization,
}
Expand description
InstallationTargetType
JSON schema
{
"type": "string",
"enum": [
"User",
"Organization"
]
}
Variants§
Trait Implementations§
Source§impl Clone for InstallationTargetType
impl Clone for InstallationTargetType
Source§fn clone(&self) -> InstallationTargetType
fn clone(&self) -> InstallationTargetType
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 InstallationTargetType
impl Debug for InstallationTargetType
Source§impl<'de> Deserialize<'de> for InstallationTargetType
impl<'de> Deserialize<'de> for InstallationTargetType
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 From<&InstallationTargetType> for InstallationTargetType
impl From<&InstallationTargetType> for InstallationTargetType
Source§fn from(value: &InstallationTargetType) -> Self
fn from(value: &InstallationTargetType) -> Self
Converts to this type from the input type.
Source§impl FromStr for InstallationTargetType
impl FromStr for InstallationTargetType
Source§impl Hash for InstallationTargetType
impl Hash for InstallationTargetType
Source§impl Ord for InstallationTargetType
impl Ord for InstallationTargetType
Source§fn cmp(&self, other: &InstallationTargetType) -> Ordering
fn cmp(&self, other: &InstallationTargetType) -> Ordering
1.21.0 · 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 InstallationTargetType
impl PartialEq for InstallationTargetType
Source§impl PartialOrd for InstallationTargetType
impl PartialOrd for InstallationTargetType
Source§impl Serialize for InstallationTargetType
impl Serialize for InstallationTargetType
Source§impl ToString for InstallationTargetType
impl ToString for InstallationTargetType
Source§impl TryFrom<&String> for InstallationTargetType
impl TryFrom<&String> for InstallationTargetType
Source§impl TryFrom<&str> for InstallationTargetType
impl TryFrom<&str> for InstallationTargetType
Source§impl TryFrom<String> for InstallationTargetType
impl TryFrom<String> for InstallationTargetType
impl Copy for InstallationTargetType
impl Eq for InstallationTargetType
impl StructuralPartialEq for InstallationTargetType
Auto Trait Implementations§
impl Freeze for InstallationTargetType
impl RefUnwindSafe for InstallationTargetType
impl Send for InstallationTargetType
impl Sync for InstallationTargetType
impl Unpin for InstallationTargetType
impl UnwindSafe for InstallationTargetType
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