RawPointInner

Struct RawPointInner 

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

Implementations§

Source§

impl RawPointInner

Source

pub fn cast<T>(self) -> RawPoint<T>

Source

pub fn from_address(address: Address, resolve: Arc<dyn Resolve>) -> Self

Trait Implementations§

Source§

impl Clone for RawPointInner

Source§

fn clone(&self) -> RawPointInner

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl FetchBytes for RawPointInner

Source§

fn fetch_bytes(&self) -> FailFuture<'_, ByteNode>

Source§

fn extension(&self, typeid: TypeId) -> Result<&dyn Any>

Source§

fn as_inner(&self) -> Option<&dyn Any>

Source§

impl<__I: ParseInput> Parse<__I> for RawPointInner
where Self: ParseInline<__I>,

Source§

fn parse(input: __I) -> Result<Self>

Source§

impl ParseInline<Input<'_>> for RawPointInner

Source§

fn parse_inline(input: &mut Input<'_>) -> Result<Self>

Source§

fn parse_as_inline(input: I) -> Result<Self>

Source§

impl Singular for RawPointInner

Source§

fn hash(&self) -> &Hash

Source§

impl ToOutput for RawPointInner

Source§

fn to_output(&self, output: &mut dyn Output)

Source§

fn data_hash(&self) -> Hash

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> AsAny for T

Source§

fn any_ref(&self) -> &(dyn Any + 'static)
where T: 'static,

Source§

fn any_mut(&mut self) -> &mut (dyn Any + 'static)
where T: 'static,

Source§

fn any_box(self: Box<T>) -> Box<dyn Any>
where T: 'static,

Source§

fn any_arc(self: Arc<T>) -> Arc<dyn Any>
where T: 'static,

Source§

fn any_arc_sync(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
where T: 'static + Send + Sync,

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> FetchBytesExt for T
where T: FetchBytes + ?Sized,

Source§

fn inner_cast<T: FromInner>(&self) -> Option<T>

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> ParseSlice for T
where T: for<'a> Parse<Input<'a>>,

Source§

fn parse_slice(data: &[u8], resolve: &Arc<dyn Resolve>) -> Result<Self>

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOutputExt for T
where T: ToOutput + ?Sized,

Source§

fn output<T: Output + Default>(&self) -> T

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.