pub enum PageContentExportStatus {
InProgress,
Failed,
Complete,
}
Expand description
Status of a page content export.
JSON schema
{
"description": "Status of a page content export.",
"type": "string",
"enum": [
"inProgress",
"failed",
"complete"
],
"x-schema-name": "PageContentExportStatus",
"x-tsEnumNames": [
"InProgress",
"Failed",
"Complete"
]
}
Variants§
Trait Implementations§
Source§impl Clone for PageContentExportStatus
impl Clone for PageContentExportStatus
Source§fn clone(&self) -> PageContentExportStatus
fn clone(&self) -> PageContentExportStatus
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 PageContentExportStatus
impl Debug for PageContentExportStatus
Source§impl<'de> Deserialize<'de> for PageContentExportStatus
impl<'de> Deserialize<'de> for PageContentExportStatus
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 Display for PageContentExportStatus
impl Display for PageContentExportStatus
Source§impl From<&PageContentExportStatus> for PageContentExportStatus
impl From<&PageContentExportStatus> for PageContentExportStatus
Source§fn from(value: &PageContentExportStatus) -> Self
fn from(value: &PageContentExportStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for PageContentExportStatus
impl FromStr for PageContentExportStatus
Source§impl Hash for PageContentExportStatus
impl Hash for PageContentExportStatus
Source§impl Ord for PageContentExportStatus
impl Ord for PageContentExportStatus
Source§fn cmp(&self, other: &PageContentExportStatus) -> Ordering
fn cmp(&self, other: &PageContentExportStatus) -> 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 PageContentExportStatus
impl PartialEq for PageContentExportStatus
Source§impl PartialOrd for PageContentExportStatus
impl PartialOrd for PageContentExportStatus
Source§impl Serialize for PageContentExportStatus
impl Serialize for PageContentExportStatus
Source§impl TryFrom<&String> for PageContentExportStatus
impl TryFrom<&String> for PageContentExportStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for PageContentExportStatus
impl TryFrom<&str> for PageContentExportStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for PageContentExportStatus
impl TryFrom<String> for PageContentExportStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for PageContentExportStatus
impl Eq for PageContentExportStatus
impl StructuralPartialEq for PageContentExportStatus
Auto Trait Implementations§
impl Freeze for PageContentExportStatus
impl RefUnwindSafe for PageContentExportStatus
impl Send for PageContentExportStatus
impl Sync for PageContentExportStatus
impl Unpin for PageContentExportStatus
impl UnwindSafe for PageContentExportStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.