#[repr(C)]pub struct Point3d<T = f32> {
pub x: T,
pub y: T,
pub z: T,
}Expand description
A point in 3D space
Fields§
§x: T§y: T§z: TImplementations§
Trait Implementations§
Source§impl<T> Add for Point3d<T>where
T: Add<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> Add for Point3d<T>where
T: Add<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§impl<T> AddAssign for Point3d<T>where
T: AddAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> AddAssign for Point3d<T>where
T: AddAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
+= operation. Read moreimpl<T: Copy> Copy for Point3d<T>
Source§impl<'de, T> Deserialize<'de> for Point3d<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Point3d<T>where
T: Deserialize<'de>,
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>,
Source§impl<T> Div for Point3d<T>where
T: Div<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> Div for Point3d<T>where
T: Div<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§impl<T> Div<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
impl<T> Div<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
Source§impl<T> DivAssign for Point3d<T>where
T: DivAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> DivAssign for Point3d<T>where
T: DivAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§fn div_assign(&mut self, other: Self)
fn div_assign(&mut self, other: Self)
/= operation. Read moreSource§impl<T> DivAssign<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
impl<T> DivAssign<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
Source§fn div_assign(&mut self, other: T)
fn div_assign(&mut self, other: T)
/= operation. Read moreSource§impl<T: JsonSchema> JsonSchema for Point3d<T>
impl<T: JsonSchema> JsonSchema for Point3d<T>
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref keyword. Read moreSource§impl<T> Mul for Point3d<T>where
T: Mul<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> Mul for Point3d<T>where
T: Mul<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§impl<T> Mul<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
impl<T> Mul<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
Source§impl<T> MulAssign for Point3d<T>where
T: MulAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> MulAssign for Point3d<T>where
T: MulAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§fn mul_assign(&mut self, other: Self)
fn mul_assign(&mut self, other: Self)
*= operation. Read moreSource§impl<T> MulAssign<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
impl<T> MulAssign<T> for Point3d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
Source§fn mul_assign(&mut self, other: T)
fn mul_assign(&mut self, other: T)
*= operation. Read moreimpl<T: PartialEq> StructuralPartialEq for Point3d<T>
Source§impl<T> Sub for Point3d<T>where
T: Sub<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> Sub for Point3d<T>where
T: Sub<Output = T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§impl<T> SubAssign for Point3d<T>where
T: SubAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
impl<T> SubAssign for Point3d<T>where
T: SubAssign<T>,
Arithmetic between two points happens component-wise, e.g. p + q == (p.x + q.x, p.y + q.y)
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
-= operation. Read moreSource§impl<T> TS for Point3d<T>where
T: TS,
impl<T> TS for Point3d<T>where
T: TS,
Source§type WithoutGenerics = Point3d<Dummy>
type WithoutGenerics = Point3d<Dummy>
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = Point3d<T>
type OptionInnerType = Point3d<T>
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read moreSource§fn export_to_string(cfg: &Config) -> Result<String, ExportError>where
Self: 'static,
fn export_to_string(cfg: &Config) -> Result<String, ExportError>where
Self: 'static,
Auto Trait Implementations§
impl<T> Freeze for Point3d<T>where
T: Freeze,
impl<T> RefUnwindSafe for Point3d<T>where
T: RefUnwindSafe,
impl<T> Send for Point3d<T>where
T: Send,
impl<T> Sync for Point3d<T>where
T: Sync,
impl<T> Unpin for Point3d<T>where
T: Unpin,
impl<T> UnsafeUnpin for Point3d<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Point3d<T>where
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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> ⓘ
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> ⓘ
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