pub enum PipelineVisibility {
Private,
Public,
}Expand description
Whether the pipeline is private or public.
JSON schema
{
"description": "Whether the pipeline is private or public.",
"type": "string",
"enum": [
"private",
"public"
]
}Variants§
Trait Implementations§
Source§impl Clone for PipelineVisibility
impl Clone for PipelineVisibility
Source§fn clone(&self) -> PipelineVisibility
fn clone(&self) -> PipelineVisibility
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 PipelineVisibility
Source§impl Debug for PipelineVisibility
impl Debug for PipelineVisibility
Source§impl<'de> Deserialize<'de> for PipelineVisibility
impl<'de> Deserialize<'de> for PipelineVisibility
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PipelineVisibility, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PipelineVisibility, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PipelineVisibility
impl Display for PipelineVisibility
impl Eq for PipelineVisibility
Source§impl FromStr for PipelineVisibility
impl FromStr for PipelineVisibility
Source§type Err = ConversionError
type Err = ConversionError
The associated error which can be returned from parsing.
Source§fn from_str(value: &str) -> Result<PipelineVisibility, ConversionError>
fn from_str(value: &str) -> Result<PipelineVisibility, ConversionError>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for PipelineVisibility
impl Hash for PipelineVisibility
Source§impl Ord for PipelineVisibility
impl Ord for PipelineVisibility
Source§fn cmp(&self, other: &PipelineVisibility) -> Ordering
fn cmp(&self, other: &PipelineVisibility) -> 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 PipelineVisibility
impl PartialEq for PipelineVisibility
Source§fn eq(&self, other: &PipelineVisibility) -> bool
fn eq(&self, other: &PipelineVisibility) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PipelineVisibility
impl PartialOrd for PipelineVisibility
Source§impl Serialize for PipelineVisibility
impl Serialize for PipelineVisibility
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PipelineVisibility
Source§impl TryFrom<&String> for PipelineVisibility
impl TryFrom<&String> for PipelineVisibility
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: &String) -> Result<PipelineVisibility, ConversionError>
fn try_from(value: &String) -> Result<PipelineVisibility, ConversionError>
Performs the conversion.
Source§impl TryFrom<&str> for PipelineVisibility
impl TryFrom<&str> for PipelineVisibility
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: &str) -> Result<PipelineVisibility, ConversionError>
fn try_from(value: &str) -> Result<PipelineVisibility, ConversionError>
Performs the conversion.
Source§impl TryFrom<String> for PipelineVisibility
impl TryFrom<String> for PipelineVisibility
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: String) -> Result<PipelineVisibility, ConversionError>
fn try_from(value: String) -> Result<PipelineVisibility, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PipelineVisibility
impl RefUnwindSafe for PipelineVisibility
impl Send for PipelineVisibility
impl Sync for PipelineVisibility
impl Unpin for PipelineVisibility
impl UnsafeUnpin for PipelineVisibility
impl UnwindSafe for PipelineVisibility
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