pub struct RenderProgress {
pub completed_frames: u32,
pub total_frames: u32,
pub frame: u32,
}Fields§
§completed_frames: u32§total_frames: u32§frame: u32Trait Implementations§
Source§impl Clone for RenderProgress
impl Clone for RenderProgress
Source§fn clone(&self) -> RenderProgress
fn clone(&self) -> RenderProgress
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 moreimpl Copy for RenderProgress
Source§impl Debug for RenderProgress
impl Debug for RenderProgress
impl Eq for RenderProgress
Source§impl PartialEq for RenderProgress
impl PartialEq for RenderProgress
impl StructuralPartialEq for RenderProgress
Auto Trait Implementations§
impl Freeze for RenderProgress
impl RefUnwindSafe for RenderProgress
impl Send for RenderProgress
impl Sync for RenderProgress
impl Unpin for RenderProgress
impl UnsafeUnpin for RenderProgress
impl UnwindSafe for RenderProgress
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more