pub struct ImportOutcome {
pub imported_asset_ids: Vec<String>,
pub accepted: bool,
pub next_cursor: Option<String>,
pub resume_token: Option<String>,
pub sync_audit: SyncAudit,
}Fields§
§imported_asset_ids: Vec<String>§accepted: bool§next_cursor: Option<String>§resume_token: Option<String>§sync_audit: SyncAuditTrait Implementations§
Source§impl Clone for ImportOutcome
impl Clone for ImportOutcome
Source§fn clone(&self) -> ImportOutcome
fn clone(&self) -> ImportOutcome
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 ImportOutcome
impl Debug for ImportOutcome
Source§impl<'de> Deserialize<'de> for ImportOutcome
impl<'de> Deserialize<'de> for ImportOutcome
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 ImportOutcome
impl RefUnwindSafe for ImportOutcome
impl Send for ImportOutcome
impl Sync for ImportOutcome
impl Unpin for ImportOutcome
impl UnsafeUnpin for ImportOutcome
impl UnwindSafe for ImportOutcome
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