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