Struct re_types::blueprint::views::Spatial3DView
source · pub struct Spatial3DView {
pub background: Background,
pub time_ranges: VisibleTimeRanges,
}
Expand description
View: For viewing spatial 3D data.
Fields§
§background: Background
Configuration for the background of the view.
time_ranges: VisibleTimeRanges
Configures which range on each timeline is shown by this view (unless specified differently per entity).
If not specified, the default is to show the latest state of each component. If a timeline is specified more than once, the first entry will be used.
Trait Implementations§
source§impl Clone for Spatial3DView
impl Clone for Spatial3DView
source§fn clone(&self) -> Spatial3DView
fn clone(&self) -> Spatial3DView
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 Spatial3DView
impl Debug for Spatial3DView
source§impl SizeBytes for Spatial3DView
impl SizeBytes for Spatial3DView
source§fn heap_size_bytes(&self) -> u64
fn heap_size_bytes(&self) -> u64
Returns the total size of
self
on the heap, in bytes.source§fn total_size_bytes(&self) -> u64
fn total_size_bytes(&self) -> u64
Returns the total size of
self
in bytes, accounting for both stack and heap space.source§fn stack_size_bytes(&self) -> u64
fn stack_size_bytes(&self) -> u64
Returns the total size of
self
on the stack, in bytes. Read moresource§impl View for Spatial3DView
impl View for Spatial3DView
Auto Trait Implementations§
impl Freeze for Spatial3DView
impl RefUnwindSafe for Spatial3DView
impl Send for Spatial3DView
impl Sync for Spatial3DView
impl Unpin for Spatial3DView
impl UnwindSafe for Spatial3DView
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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