pub struct SlicedProcMesh<'a>(/* private fields */);
Trait Implementations§
Source§impl Mesh for SlicedProcMesh<'_>
impl Mesh for SlicedProcMesh<'_>
Source§type Id = ProcMeshId
type Id = ProcMeshId
The type of identifiers for this mesh.
Source§type Sliced<'b> = SlicedProcMesh<'b>
where
Self: 'b
type Sliced<'b> = SlicedProcMesh<'b> where Self: 'b
The type of a slice of this mesh. Slices should not outlive their
parent mesh.
Source§fn select<R: Into<Range>>(
&self,
label: &str,
range: R,
) -> Result<Self::Sliced<'_>, ShapeError>
fn select<R: Into<Range>>( &self, label: &str, range: R, ) -> Result<Self::Sliced<'_>, ShapeError>
Sub-slice this mesh, specifying the included ranges for
the dimension with the labeled name.
Auto Trait Implementations§
impl<'a> Freeze for SlicedProcMesh<'a>
impl<'a> !RefUnwindSafe for SlicedProcMesh<'a>
impl<'a> Send for SlicedProcMesh<'a>
impl<'a> Sync for SlicedProcMesh<'a>
impl<'a> Unpin for SlicedProcMesh<'a>
impl<'a> !UnwindSafe for SlicedProcMesh<'a>
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync 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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<A, M> Handler<IndexedErasedUnbound<M>> for A
impl<A, M> Handler<IndexedErasedUnbound<M>> for A
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
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 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>
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