Skip to main content

Point2

Struct Point2 

Source
pub struct Point2 { /* private fields */ }

Trait Implementations§

Source§

impl Clone for Point2

Source§

fn clone(&self) -> Point2

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Point2

Source§

impl Debug for Point2

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Point2

Source§

fn default() -> Point2

Returns the “default value” for a type. Read more
Source§

impl DefaultVersion for Point2

Source§

fn default_version(num_extra_bytes: u16) -> Vec<LazItem>

Source§

impl LasRGB for Point2

Source§

fn red(&self) -> u16

Source§

fn green(&self) -> u16

Source§

fn blue(&self) -> u16

Source§

fn set_red(&mut self, new_val: u16)

Source§

fn set_green(&mut self, new_val: u16)

Source§

fn set_blue(&mut self, new_val: u16)

Source§

impl PartialEq for Point2

Source§

fn eq(&self, other: &Point2) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Point2

Source§

impl Version1 for Point2

Source§

fn version_1(num_extra_bytes: u16) -> Vec<LazItem>

Source§

impl Version2 for Point2

Source§

fn version_2(num_extra_bytes: u16) -> Vec<LazItem>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> LasPoint0 for T
where T: Point0Based,

Source§

fn x(&self) -> i32

Source§

fn y(&self) -> i32

Source§

fn z(&self) -> i32

Source§

fn intensity(&self) -> u16

Source§

fn bit_fields(&self) -> u8

Source§

fn number_of_returns_of_given_pulse(&self) -> u8

Source§

fn scan_direction_flag(&self) -> bool

Source§

fn edge_of_flight_line(&self) -> bool

Source§

fn return_number(&self) -> u8

Source§

fn classification(&self) -> u8

Source§

fn scan_angle_rank(&self) -> i8

Source§

fn user_data(&self) -> u8

Source§

fn point_source_id(&self) -> u16

Source§

fn set_x(&mut self, new_val: i32)

Source§

fn set_y(&mut self, new_val: i32)

Source§

fn set_z(&mut self, new_val: i32)

Source§

fn set_intensity(&mut self, new_val: u16)

Source§

fn set_bit_fields(&mut self, new_val: u8)

Source§

fn set_classification(&mut self, new_val: u8)

Source§

fn set_scan_angle_rank(&mut self, new_val: i8)

Source§

fn set_user_data(&mut self, new_val: u8)

Source§

fn set_point_source_id(&mut self, new_val: u16)

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.