#[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<'arbitrary, T: Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for Point2d<T>
impl<'arbitrary, T: Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for Point2d<T>
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Self from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Self from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Unstructured this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Unstructured this type
needs to construct itself. 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§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§type OptionInnerType = Point2d<T>
type OptionInnerType = Point2d<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,
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> UnsafeUnpin for Point2d<T>where
T: UnsafeUnpin,
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> 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