pub struct Point<T> { /* private fields */ }Implementations§
Source§impl<T: Object> Point<T>
impl<T: Object> Point<T>
pub fn from_address(address: Address, resolve: Arc<dyn Resolve>) -> Self
Source§impl<T> Point<T>
impl<T> Point<T>
pub fn from_address_extra<Extra: 'static + Send + Sync + Clone>(
address: Address,
resolve: Arc<dyn Resolve>,
extra: Extra,
) -> Selfwhere
T: Object<Extra>,
pub fn with_resolve<Extra: 'static + Send + Sync + Clone>(
&self,
resolve: Arc<dyn Resolve>,
extra: Extra,
) -> Selfwhere
T: Object<Extra>,
Source§impl<T: Traversible + Clone> Point<T>
impl<T: Traversible + Clone> Point<T>
Trait Implementations§
Source§impl<U: 'static + Equivalent<T>, T: 'static> Equivalent<Point<T>> for Point<U>
This implementation is the main goal of Equivalent: we assume transmuting the pointer is
safe.
impl<U: 'static + Equivalent<T>, T: 'static> Equivalent<Point<T>> for Point<U>
This implementation is the main goal of Equivalent: we assume transmuting the pointer is
safe.
Source§fn into_equivalent(self) -> Point<T>
fn into_equivalent(self) -> Point<T>
Inverse of
Equivalent::from_equivalent.Source§fn from_equivalent(point: Point<T>) -> Self
fn from_equivalent(point: Point<T>) -> Self
Inverse of
Equivalent::into_equivalent.Source§impl<T> FetchBytes for Point<T>
impl<T> FetchBytes for Point<T>
fn fetch_bytes(&self) -> FailFuture<'_, ByteNode>
fn fetch_data(&self) -> FailFuture<'_, Vec<u8>>
fn as_inner(&self) -> Option<&dyn Any>
Source§impl<T> MaybeHasNiche for Point<T>
impl<T> MaybeHasNiche for Point<T>
Source§impl<T> Ord for Point<T>
impl<T> Ord for Point<T>
Source§impl<T, __I: ParseInput> Parse<__I> for Point<T>where
Self: ParseInline<__I>,
impl<T, __I: ParseInput> Parse<__I> for Point<T>where
Self: ParseInline<__I>,
Source§impl<T: Object<I::Extra>, I: PointInput<Extra: Send + Sync>> ParseInline<I> for Point<T>
impl<T: Object<I::Extra>, I: PointInput<Extra: Send + Sync>> ParseInline<I> for Point<T>
Source§impl<T> PartialOrd for Point<T>
impl<T> PartialOrd for Point<T>
Source§impl<T: Traversible> Topological for Point<T>
impl<T: Traversible> Topological for Point<T>
fn accept_points(&self, visitor: &mut impl PointVisitor)
fn point_count(&self) -> usize
fn topology_hash(&self) -> Hash
fn topology(&self) -> TopoVec
impl<T> Eq for Point<T>
impl<T: Object<Extra>, Extra: 'static + Send + Sync + Clone> Inline<Extra> for Point<T>
impl<T: Object<Extra>, Extra: 'static + Send + Sync + Clone> Object<Extra> for Point<T>
Auto Trait Implementations§
impl<T> Freeze for Point<T>
impl<T> !RefUnwindSafe for Point<T>
impl<T> Send for Point<T>
impl<T> Sync for Point<T>
impl<T> Unpin for Point<T>
impl<T> !UnwindSafe for Point<T>
Blanket Implementations§
Source§impl<T> AsAny for T
impl<T> AsAny for T
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
Mutably borrows from an owned value. Read more