pub struct Point<T, Extra = ()> { /* 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: Object<Extra>, Extra: 'static + Send + Sync + Clone> Point<T, Extra>
impl<T: Object<Extra>, Extra: 'static + Send + Sync + Clone> Point<T, Extra>
pub fn from_address_extra( address: Address, resolve: Arc<dyn Resolve>, extra: Extra, ) -> Self
Trait Implementations§
Source§impl<U: 'static + Equivalent<T>, T: 'static, Extra: 'static> Equivalent<Point<T, Extra>> for Point<U, Extra>
This implementation is the main goal of Equivalent: we assume transmuting the pointer is
safe.
impl<U: 'static + Equivalent<T>, T: 'static, Extra: 'static> Equivalent<Point<T, Extra>> for Point<U, Extra>
This implementation is the main goal of Equivalent: we assume transmuting the pointer is
safe.
Source§fn into_equivalent(self) -> Point<T, Extra>
fn into_equivalent(self) -> Point<T, Extra>
Inverse of
Equivalent::from_equivalent.Source§fn from_equivalent(point: Point<T, Extra>) -> Self
fn from_equivalent(point: Point<T, Extra>) -> Self
Inverse of
Equivalent::into_equivalent.Source§impl<T: Object<Extra>, Extra: 'static + Send + Sync> Fetch for Point<T, Extra>
impl<T: Object<Extra>, Extra: 'static + Send + Sync> Fetch for Point<T, Extra>
type T = T
type Extra = Extra
fn fetch_full(&self) -> FailFuture<'_, (Self::T, Arc<dyn Resolve>)>
fn fetch(&self) -> FailFuture<'_, Self::T>
fn get(&self) -> Option<&Self::T>
fn get_mut(&mut self) -> Option<&mut Self::T>
fn get_mut_finalize(&mut self)
fn extra(&self) -> &Self::Extra
Source§impl<T, Extra> FetchBytes for Point<T, Extra>
impl<T, Extra> FetchBytes for Point<T, Extra>
Source§impl<T, Extra> MaybeHasNiche for Point<T, Extra>
impl<T, Extra> MaybeHasNiche for Point<T, Extra>
Source§impl<T: Object<Extra>, Extra: 'static + Send + Sync + Clone> Object<Extra> for Point<T, Extra>
impl<T: Object<Extra>, Extra: 'static + Send + Sync + Clone> Object<Extra> for Point<T, Extra>
Source§impl<T, Extra> Ord for Point<T, Extra>
impl<T, Extra> Ord for Point<T, Extra>
Source§impl<T, Extra, __I: ParseInput> Parse<__I> for Point<T, Extra>where
Self: ParseInline<__I>,
impl<T, Extra, __I: ParseInput> Parse<__I> for Point<T, Extra>where
Self: ParseInline<__I>,
Source§impl<T: Object<I::Extra>, I: PointInput<Extra: Send + Sync>> ParseInline<I> for Point<T, I::Extra>
impl<T: Object<I::Extra>, I: PointInput<Extra: Send + Sync>> ParseInline<I> for Point<T, I::Extra>
Source§impl<T, Extra> PartialOrd for Point<T, Extra>
impl<T, Extra> PartialOrd for Point<T, Extra>
Source§impl<T: Object<Extra>, Extra: 'static> Topological<Extra> for Point<T, Extra>
impl<T: Object<Extra>, Extra: 'static> Topological<Extra> for Point<T, Extra>
fn accept_points(&self, visitor: &mut impl PointVisitor<Extra>)
fn point_count(&self) -> usize
fn topology_hash(&self) -> Hash
fn topology(&self) -> TopoVec
impl<T, Extra> Eq for Point<T, Extra>
impl<T: Object<Extra>, Extra: 'static + Send + Sync + Clone> Inline<Extra> for Point<T, Extra>
Auto Trait Implementations§
impl<T, Extra> Freeze for Point<T, Extra>
impl<T, Extra = ()> !RefUnwindSafe for Point<T, Extra>
impl<T, Extra> Send for Point<T, Extra>
impl<T, Extra> Sync for Point<T, Extra>
impl<T, Extra> Unpin for Point<T, Extra>
impl<T, Extra = ()> !UnwindSafe for Point<T, Extra>
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