pub struct ScopeDType { /* private fields */ }
Implementations§
Source§impl ScopeDType
impl ScopeDType
pub fn new(dtype: DType) -> Self
pub fn dtype(&self, id: &Identifier) -> Option<&DType>
pub fn copy_with_dtype(&self, ident: Identifier, dtype: DType) -> Self
pub fn with_dtype(self, ident: Identifier, dtype: DType) -> Self
pub fn with_dtype_element(self, (ident, dtype): ScopeDTypeElement) -> Self
Trait Implementations§
Source§impl Clone for ScopeDType
impl Clone for ScopeDType
Source§fn clone(&self) -> ScopeDType
fn clone(&self) -> ScopeDType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ScopeDType
impl Debug for ScopeDType
Source§impl Default for ScopeDType
impl Default for ScopeDType
Source§fn default() -> ScopeDType
fn default() -> ScopeDType
Returns the “default value” for a type. Read more
Source§impl Display for ScopeDType
impl Display for ScopeDType
Auto Trait Implementations§
impl Freeze for ScopeDType
impl RefUnwindSafe for ScopeDType
impl Send for ScopeDType
impl Sync for ScopeDType
impl Unpin for ScopeDType
impl UnwindSafe for ScopeDType
Blanket Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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