pub struct PostExportStatusSchema {
pub status: String,
pub reason: Option<String>,
}
Fields§
§status: String
ENUM describing the status of this application’s export to an external system
reason: Option<String>
Further explanation for the assigned status
Trait Implementations§
Source§impl Debug for PostExportStatusSchema
impl Debug for PostExportStatusSchema
Source§impl<'de> Deserialize<'de> for PostExportStatusSchema
impl<'de> Deserialize<'de> for PostExportStatusSchema
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 PostExportStatusSchema
impl Display for PostExportStatusSchema
Auto Trait Implementations§
impl Freeze for PostExportStatusSchema
impl RefUnwindSafe for PostExportStatusSchema
impl Send for PostExportStatusSchema
impl Sync for PostExportStatusSchema
impl Unpin for PostExportStatusSchema
impl UnwindSafe for PostExportStatusSchema
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