Struct rosu_render::model::RenderServer
source · pub struct RenderServer {Show 22 fields
pub enabled: bool,
pub last_seen: OffsetDateTime,
pub name: Box<str>,
pub priority: f32,
pub old_score: f32,
pub avg_fps: u32,
pub power: Box<str>,
pub status: Box<str>,
pub total_rendered: u32,
pub rendering_type: Box<str>,
pub cpu: Box<str>,
pub gpu: Box<str>,
pub motion_blur_capable: bool,
pub using_osu_api: bool,
pub uhd_capable: bool,
pub avg_render_time: f32,
pub avg_upload_time: f32,
pub total_avg_time: f32,
pub total_uploaded_videos_size: u32,
pub owner_user_id: u32,
pub owner_username: Box<str>,
pub customization: RenderServerOptions,
}Fields§
§enabled: bool§last_seen: OffsetDateTime§name: Box<str>§priority: f32§old_score: f32§avg_fps: u32§power: Box<str>§status: Box<str>§total_rendered: u32§rendering_type: Box<str>§cpu: Box<str>§gpu: Box<str>§motion_blur_capable: bool§using_osu_api: bool§uhd_capable: bool§avg_render_time: f32§avg_upload_time: f32§total_avg_time: f32§total_uploaded_videos_size: u32§owner_user_id: u32§owner_username: Box<str>§customization: RenderServerOptionsTrait Implementations§
source§impl Clone for RenderServer
impl Clone for RenderServer
source§fn clone(&self) -> RenderServer
fn clone(&self) -> RenderServer
Returns a copy 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 RenderServer
impl Debug for RenderServer
source§impl<'de> Deserialize<'de> for RenderServer
impl<'de> Deserialize<'de> for RenderServer
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 RenderServer
impl PartialEq for RenderServer
source§fn eq(&self, other: &RenderServer) -> bool
fn eq(&self, other: &RenderServer) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RenderServer
Auto Trait Implementations§
impl RefUnwindSafe for RenderServer
impl Send for RenderServer
impl Sync for RenderServer
impl Unpin for RenderServer
impl UnwindSafe for RenderServer
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