pub enum ExportPresentationPdfError {
Status400(ApiError),
Status401(ApiError),
Status502(ApiError),
Status503(ApiError),
UnknownValue(Value),
}Expand description
struct for typed errors of method export_presentation_pdf
Variants§
Status400(ApiError)
Status401(ApiError)
Status502(ApiError)
Status503(ApiError)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for ExportPresentationPdfError
impl Clone for ExportPresentationPdfError
Source§fn clone(&self) -> ExportPresentationPdfError
fn clone(&self) -> ExportPresentationPdfError
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 moreSource§impl Debug for ExportPresentationPdfError
impl Debug for ExportPresentationPdfError
Source§impl<'de> Deserialize<'de> for ExportPresentationPdfError
impl<'de> Deserialize<'de> for ExportPresentationPdfError
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
Auto Trait Implementations§
impl Freeze for ExportPresentationPdfError
impl RefUnwindSafe for ExportPresentationPdfError
impl Send for ExportPresentationPdfError
impl Sync for ExportPresentationPdfError
impl Unpin for ExportPresentationPdfError
impl UnsafeUnpin for ExportPresentationPdfError
impl UnwindSafe for ExportPresentationPdfError
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