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