pub struct AssetProgress {
pub asset_kind: AssetKind,
pub asset_path: String,
pub status: Status,
pub row_count: Option<Option<i64>>,
pub error: Option<Option<String>>,
}Fields§
§asset_kind: AssetKind§asset_path: String§status: Status§row_count: Option<Option<i64>>§error: Option<Option<String>>Implementations§
Source§impl AssetProgress
impl AssetProgress
Trait Implementations§
Source§impl Clone for AssetProgress
impl Clone for AssetProgress
Source§fn clone(&self) -> AssetProgress
fn clone(&self) -> AssetProgress
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 AssetProgress
impl Debug for AssetProgress
Source§impl Default for AssetProgress
impl Default for AssetProgress
Source§fn default() -> AssetProgress
fn default() -> AssetProgress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetProgress
impl<'de> Deserialize<'de> for AssetProgress
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 PartialEq for AssetProgress
impl PartialEq for AssetProgress
Source§impl Serialize for AssetProgress
impl Serialize for AssetProgress
impl StructuralPartialEq for AssetProgress
Auto Trait Implementations§
impl Freeze for AssetProgress
impl RefUnwindSafe for AssetProgress
impl Send for AssetProgress
impl Sync for AssetProgress
impl Unpin for AssetProgress
impl UnsafeUnpin for AssetProgress
impl UnwindSafe for AssetProgress
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