pub enum BaselineSource {
Upload,
Promote,
Migrate,
Rollback,
}Expand description
Source of baseline creation.
Variants§
Upload
Uploaded directly via API
Promote
Created via promote operation
Migrate
Migrated from external storage
Rollback
Created via rollback operation
Trait Implementations§
Source§impl Clone for BaselineSource
impl Clone for BaselineSource
Source§fn clone(&self) -> BaselineSource
fn clone(&self) -> BaselineSource
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 BaselineSource
impl Debug for BaselineSource
Source§impl Default for BaselineSource
impl Default for BaselineSource
Source§fn default() -> BaselineSource
fn default() -> BaselineSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BaselineSource
impl<'de> Deserialize<'de> for BaselineSource
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 JsonSchema for BaselineSource
impl JsonSchema for BaselineSource
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for BaselineSource
impl PartialEq for BaselineSource
Source§impl Serialize for BaselineSource
impl Serialize for BaselineSource
impl Eq for BaselineSource
impl StructuralPartialEq for BaselineSource
Auto Trait Implementations§
impl Freeze for BaselineSource
impl RefUnwindSafe for BaselineSource
impl Send for BaselineSource
impl Sync for BaselineSource
impl Unpin for BaselineSource
impl UnsafeUnpin for BaselineSource
impl UnwindSafe for BaselineSource
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