#[repr(C)]pub struct Point2d<T = f32> {
    pub x: T,
    pub y: T,
}Expand description
A point in 2D space
Fields§
§x: T§y: TImplementations§
Source§impl Point2d<LengthUnit>
 
impl Point2d<LengthUnit>
Sourcepub fn to_millimeters(&self, from: UnitLength) -> Point2d<f64>
 
pub fn to_millimeters(&self, from: UnitLength) -> Point2d<f64>
Convert the point to millimeters.
Source§impl Point2d<f64>
 
impl Point2d<f64>
Sourcepub fn from_millimeters(&self, to: UnitLength) -> Point2d<LengthUnit>
 
pub fn from_millimeters(&self, to: UnitLength) -> Point2d<LengthUnit>
Convert the point from millimeters.
Trait Implementations§
Source§impl<T> Add for Point2d<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 Point2d<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 Point2d<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 Point2d<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 moreSource§impl<'de, T> Deserialize<'de> for Point2d<T>where
    T: Deserialize<'de>,
 
impl<'de, T> Deserialize<'de> for Point2d<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<T> for Point2d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
 
impl<T> Div<T> for Point2d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
Source§impl<T> Div for Point2d<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 Point2d<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> DivAssign<T> for Point2d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
 
impl<T> DivAssign<T> for Point2d<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> DivAssign for Point2d<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 Point2d<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: JsonSchema> JsonSchema for Point2d<T>
 
impl<T: JsonSchema> JsonSchema for Point2d<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<T> for Point2d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
 
impl<T> Mul<T> for Point2d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
Source§impl<T> Mul for Point2d<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 Point2d<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> MulAssign<T> for Point2d<T>
Applies an arithmetic operation to each component, e.g. p * 3 = (p.x * 3, p.y * 3)
 
impl<T> MulAssign<T> for Point2d<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 moreSource§impl<T> MulAssign for Point2d<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 Point2d<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> Sub for Point2d<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 Point2d<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 Point2d<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 Point2d<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 Point2d<T>where
    T: TS,
 
impl<T> TS for Point2d<T>where
    T: TS,
Source§const DOCS: Option<&'static str>
 
const DOCS: Option<&'static str>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§type WithoutGenerics = Point2d<Dummy>
 
type WithoutGenerics = Point2d<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§fn decl_concrete() -> String
 
fn decl_concrete() -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl() -> String
 
fn decl() -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline() -> String
 
fn inline() -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened() -> String
 
fn inline_flattened() -> String
This function will panic if the type cannot be flattened.
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<&'static Path>
 
fn output_path() -> Option<&'static Path>
T should be exported.The returned path does not include the base directory from
TS_RS_EXPORT_DIR. 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() -> Vec<Dependency>where
    Self: 'static,
 
fn dependencies() -> Vec<Dependency>where
    Self: 'static,
Source§fn export() -> Result<(), ExportError>where
    Self: 'static,
 
fn export() -> Result<(), ExportError>where
    Self: 'static,
TS::export_all. Read moreSource§fn export_all() -> Result<(), ExportError>where
    Self: 'static,
 
fn export_all() -> Result<(), ExportError>where
    Self: 'static,
To export only this type, without its dependencies, use
TS::export. Read moreSource§fn export_all_to(out_dir: impl AsRef<Path>) -> Result<(), ExportError>where
    Self: 'static,
 
fn export_all_to(out_dir: impl AsRef<Path>) -> Result<(), ExportError>where
    Self: 'static,
To export only this type, without its dependencies, use
TS::export. Read moreSource§fn export_to_string() -> Result<String, ExportError>where
    Self: 'static,
 
fn export_to_string() -> Result<String, ExportError>where
    Self: 'static,
impl<T: Copy> Copy for Point2d<T>
Auto Trait Implementations§
impl<T> Freeze for Point2d<T>where
    T: Freeze,
impl<T> RefUnwindSafe for Point2d<T>where
    T: RefUnwindSafe,
impl<T> Send for Point2d<T>where
    T: Send,
impl<T> Sync for Point2d<T>where
    T: Sync,
impl<T> Unpin for Point2d<T>where
    T: Unpin,
impl<T> UnwindSafe for Point2d<T>where
    T: UnwindSafe,
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
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,
Source§impl<T> FutureExt for T
 
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
 
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
 
fn with_current_context(self) -> WithContext<Self>
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>
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