Struct observation_tools_client::artifacts::Point3Builder
source · pub struct Point3Builder { /* private fields */ }
Expand description
A 3D point.
Implementations§
source§impl Point3Builder
impl Point3Builder
pub fn from_number_builder( x: NumberBuilder, y: NumberBuilder, z: NumberBuilder ) -> Point3Builder
source§impl Point3Builder
impl Point3Builder
pub fn new( x: impl Into<NumberBuilder>, y: impl Into<NumberBuilder>, z: impl Into<NumberBuilder> ) -> Point3Builder
Trait Implementations§
source§impl Clone for Point3Builder
impl Clone for Point3Builder
source§fn clone(&self) -> Point3Builder
fn clone(&self) -> Point3Builder
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<A, B, C> From<(A, B, C)> for Point3Builder
impl<A, B, C> From<(A, B, C)> for Point3Builder
source§fn from((x, y, z): (A, B, C)) -> Point3Builder
fn from((x, y, z): (A, B, C)) -> Point3Builder
Converts to this type from the input type.
source§impl From<Point3Builder> for JsValue
impl From<Point3Builder> for JsValue
source§fn from(value: Point3Builder) -> Self
fn from(value: Point3Builder) -> Self
Converts to this type from the input type.
source§impl FromWasmAbi for Point3Builder
impl FromWasmAbi for Point3Builder
source§impl<T: Scalar + Into<NumberBuilder>> Into<Point3Builder> for Point3<T>
impl<T: Scalar + Into<NumberBuilder>> Into<Point3Builder> for Point3<T>
source§fn into(self) -> Point3Builder
fn into(self) -> Point3Builder
Converts this type into the (usually inferred) input type.
source§impl IntoWasmAbi for Point3Builder
impl IntoWasmAbi for Point3Builder
source§impl LongRefFromWasmAbi for Point3Builder
impl LongRefFromWasmAbi for Point3Builder
source§impl OptionFromWasmAbi for Point3Builder
impl OptionFromWasmAbi for Point3Builder
source§impl OptionIntoWasmAbi for Point3Builder
impl OptionIntoWasmAbi for Point3Builder
source§impl RefFromWasmAbi for Point3Builder
impl RefFromWasmAbi for Point3Builder
§type Anchor = Ref<'static, Point3Builder>
type Anchor = Ref<'static, Point3Builder>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.source§impl RefMutFromWasmAbi for Point3Builder
impl RefMutFromWasmAbi for Point3Builder
source§impl TryFromJsValue for Point3Builder
impl TryFromJsValue for Point3Builder
source§impl VectorFromWasmAbi for Point3Builder
impl VectorFromWasmAbi for Point3Builder
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Point3Builder]>
source§impl VectorIntoWasmAbi for Point3Builder
impl VectorIntoWasmAbi for Point3Builder
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Point3Builder]>) -> Self::Abi
source§impl WasmDescribeVector for Point3Builder
impl WasmDescribeVector for Point3Builder
Auto Trait Implementations§
impl RefUnwindSafe for Point3Builder
impl Send for Point3Builder
impl Sync for Point3Builder
impl Unpin for Point3Builder
impl UnwindSafe for Point3Builder
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>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.