pub struct RenderProgress {
pub description: Box<str>,
pub progress: Box<str>,
pub render_id: u32,
pub renderer: Box<str>,
pub username: Box<str>,
}Expand description
Data that is received in render_progress_json websocket events.
Fields§
§description: Box<str>Description of the replay.
progress: Box<str>Current render status.
render_id: u32The id of the render.
renderer: Box<str>Server that renders the replay.
username: Box<str>User that commissioned the render.
Trait 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 · 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 RenderProgress
impl Debug for RenderProgress
Source§impl<'de> Deserialize<'de> for RenderProgress
impl<'de> Deserialize<'de> for RenderProgress
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 Hash for RenderProgress
impl Hash for RenderProgress
Source§impl PartialEq for RenderProgress
impl PartialEq for RenderProgress
impl Eq 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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.