pub struct ClientView {
pub position: Vec3,
pub radius: f32,
pub budget: ClientBudget,
}Expand description
Client view configuration.
Fields§
§position: Vec3§radius: f32§budget: ClientBudgetImplementations§
Trait Implementations§
Source§impl Clone for ClientView
impl Clone for ClientView
Source§fn clone(&self) -> ClientView
fn clone(&self) -> ClientView
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 ClientView
Source§impl Debug for ClientView
impl Debug for ClientView
Source§impl PartialEq for ClientView
impl PartialEq for ClientView
Source§fn eq(&self, other: &ClientView) -> bool
fn eq(&self, other: &ClientView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClientView
Auto Trait Implementations§
impl Freeze for ClientView
impl RefUnwindSafe for ClientView
impl Send for ClientView
impl Sync for ClientView
impl Unpin for ClientView
impl UnsafeUnpin for ClientView
impl UnwindSafe for ClientView
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