pub struct ImportResponse {
pub action_uid: Option<String>,
pub status: Option<String>,
pub extra: Value,
}
Expand description
Response from import operation
Fields§
§action_uid: Option<String>
The action UID for tracking the import operation
status: Option<String>
Import status
extra: Value
Additional fields from the response
Trait Implementations§
Source§impl Clone for ImportResponse
impl Clone for ImportResponse
Source§fn clone(&self) -> ImportResponse
fn clone(&self) -> ImportResponse
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 ImportResponse
impl Debug for ImportResponse
Source§impl<'de> Deserialize<'de> for ImportResponse
impl<'de> Deserialize<'de> for ImportResponse
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 ImportResponse
impl RefUnwindSafe for ImportResponse
impl Send for ImportResponse
impl Sync for ImportResponse
impl Unpin for ImportResponse
impl UnwindSafe for ImportResponse
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