pub enum PermanentSuspendError {
StorageRequired,
EnterpriseFeature,
UnsupportedInputEndpoint(String),
}Expand description
Reasons why a pipeline does not support suspend and resume operations.
JSON schema
{
"description": "Reasons why a pipeline does not support suspend and resume operations.",
"oneOf": [
{
"type": "string",
"enum": [
"StorageRequired"
]
},
{
"type": "string",
"enum": [
"EnterpriseFeature"
]
},
{
"type": "object",
"required": [
"UnsupportedInputEndpoint"
],
"properties": {
"UnsupportedInputEndpoint": {
"type": "string"
}
}
}
]
}Variants§
Trait Implementations§
Source§impl Clone for PermanentSuspendError
impl Clone for PermanentSuspendError
Source§fn clone(&self) -> PermanentSuspendError
fn clone(&self) -> PermanentSuspendError
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 PermanentSuspendError
impl Debug for PermanentSuspendError
Source§impl<'de> Deserialize<'de> for PermanentSuspendError
impl<'de> Deserialize<'de> for PermanentSuspendError
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<&PermanentSuspendError> for PermanentSuspendError
impl From<&PermanentSuspendError> for PermanentSuspendError
Source§fn from(value: &PermanentSuspendError) -> Self
fn from(value: &PermanentSuspendError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PermanentSuspendError
impl RefUnwindSafe for PermanentSuspendError
impl Send for PermanentSuspendError
impl Sync for PermanentSuspendError
impl Unpin for PermanentSuspendError
impl UnwindSafe for PermanentSuspendError
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