pub trait AsMut<T>where
T: ?Sized,{
// Required method
fn as_mut(&mut self) -> &mut T;
}
Expand description
core
Used to do a cheap mutable-to-mutable reference conversion.
Re-exported from core
::convert::
.
Used to do a cheap mutable-to-mutable reference conversion.
This trait is similar to AsRef
but used for converting between mutable
references. If you need to do a costly conversion it is better to
implement From
with type &mut T
or write a custom function.
Note: This trait must not fail. If the conversion can fail, use a
dedicated method which returns an Option<T>
or a Result<T, E>
.
§Generic Implementations
AsMut
auto-dereferences if the inner type is a mutable reference
(e.g.: foo.as_mut()
will work the same if foo
has type &mut Foo
or &mut &mut Foo
).
Note that due to historic reasons, the above currently does not hold generally for all
mutably dereferenceable types, e.g. foo.as_mut()
will not work the same as
Box::new(foo).as_mut()
. Instead, many smart pointers provide an as_mut
implementation which
simply returns a reference to the pointed-to value (but do not perform a cheap
reference-to-reference conversion for that value). However, AsMut::as_mut
should not be
used for the sole purpose of mutable dereferencing; instead ‘Deref
coercion’ can be used:
let mut x = Box::new(5i32);
// Avoid this:
// let y: &mut i32 = x.as_mut();
// Better just write:
let y: &mut i32 = &mut x;
Types which implement DerefMut
should consider to add an implementation of AsMut<T>
as
follows:
impl<T> AsMut<T> for SomeType
where
<SomeType as Deref>::Target: AsMut<T>,
{
fn as_mut(&mut self) -> &mut T {
self.deref_mut().as_mut()
}
}
§Reflexivity
Ideally, AsMut
would be reflexive, i.e. there would be an impl<T: ?Sized> AsMut<T> for T
with as_mut
simply returning its argument unchanged.
Such a blanket implementation is currently not provided due to technical restrictions of
Rust’s type system (it would be overlapping with another existing blanket implementation for
&mut T where T: AsMut<U>
which allows AsMut
to auto-dereference, see “Generic
Implementations” above).
A trivial implementation of AsMut<T> for T
must be added explicitly for a particular type T
where needed or desired. Note, however, that not all types from std
contain such an
implementation, and those cannot be added by external code due to orphan rules.
§Examples
Using AsMut
as trait bound for a generic function, we can accept all mutable references that
can be converted to type &mut T
. Unlike dereference, which has a single target type,
there can be multiple implementations of AsMut
for a type. In particular, Vec<T>
implements
both AsMut<Vec<T>>
and AsMut<[T]>
.
In the following, the example functions caesar
and null_terminate
provide a generic
interface which work with any type that can be converted by cheap mutable-to-mutable conversion
into a byte slice ([u8]
) or byte vector (Vec<u8>
), respectively.
struct Document {
info: String,
content: Vec<u8>,
}
impl<T: ?Sized> AsMut<T> for Document
where
Vec<u8>: AsMut<T>,
{
fn as_mut(&mut self) -> &mut T {
self.content.as_mut()
}
}
fn caesar<T: AsMut<[u8]>>(data: &mut T, key: u8) {
for byte in data.as_mut() {
*byte = byte.wrapping_add(key);
}
}
fn null_terminate<T: AsMut<Vec<u8>>>(data: &mut T) {
// Using a non-generic inner function, which contains most of the
// functionality, helps to minimize monomorphization overhead.
fn doit(data: &mut Vec<u8>) {
let len = data.len();
if len == 0 || data[len-1] != 0 {
data.push(0);
}
}
doit(data.as_mut());
}
fn main() {
let mut v: Vec<u8> = vec![1, 2, 3];
caesar(&mut v, 5);
assert_eq!(v, [6, 7, 8]);
null_terminate(&mut v);
assert_eq!(v, [6, 7, 8, 0]);
let mut doc = Document {
info: String::from("Example"),
content: vec![17, 19, 8],
};
caesar(&mut doc, 1);
assert_eq!(doc.content, [18, 20, 9]);
null_terminate(&mut doc);
assert_eq!(doc.content, [18, 20, 9, 0]);
}
Note, however, that APIs don’t need to be generic. In many cases taking a &mut [u8]
or
&mut Vec<u8>
, for example, is the better choice (callers need to pass the correct type then).
Required Methods§
Implementors§
impl AsMut<str> for str
impl AsMut<str> for String
impl AsMut<ByteStr> for ByteString
impl AsMut<ContentStyle> for ContentStyle
impl AsMut<timespec> for TimeSpec
impl AsMut<timeval> for TimeVal
impl AsMut<SDL_FPoint> for FPoint
impl AsMut<SDL_FRect> for FRect
impl AsMut<SDL_Point> for devela::_dep::sdl2::rect::Point
impl AsMut<SDL_Rect> for devela::_dep::sdl2::rect::Rect
impl AsMut<SurfaceRef> for devela::_dep::sdl3::surface::Surface<'_>
impl AsMut<SDL_Point> for devela::_dep::sdl3::rect::Point
impl AsMut<SDL_Rect> for devela::_dep::sdl3::rect::Rect
impl AsMut<[f32; 2]> for Vec2
impl AsMut<[f32; 3]> for Vec3A
impl AsMut<[f32; 3]> for Vec3
impl AsMut<[f32; 4]> for Mat2
impl AsMut<[f32; 4]> for Vec4
impl AsMut<[f32; 9]> for Mat3
impl AsMut<[f32; 16]> for Mat4
impl AsMut<[f64; 2]> for DVec2
impl AsMut<[f64; 3]> for DVec3
impl AsMut<[f64; 4]> for DMat2
impl AsMut<[f64; 4]> for DVec4
impl AsMut<[f64; 9]> for DMat3
impl AsMut<[f64; 16]> for DMat4
impl AsMut<[i8; 2]> for I8Vec2
impl AsMut<[i8; 3]> for I8Vec3
impl AsMut<[i8; 4]> for I8Vec4
impl AsMut<[i16; 2]> for I16Vec2
impl AsMut<[i16; 3]> for I16Vec3
impl AsMut<[i16; 4]> for I16Vec4
impl AsMut<[i32; 2]> for IVec2
impl AsMut<[i32; 3]> for IVec3
impl AsMut<[i32; 4]> for IVec4
impl AsMut<[i64; 2]> for I64Vec2
impl AsMut<[i64; 3]> for I64Vec3
impl AsMut<[i64; 4]> for I64Vec4
impl AsMut<[u8; 2]> for U8Vec2
impl AsMut<[u8; 3]> for U8Vec3
impl AsMut<[u8; 4]> for U8Vec4
impl AsMut<[u8]> for ByteStr
impl AsMut<[u8]> for ByteString
impl AsMut<[u8]> for BytesMut
impl AsMut<[u16; 2]> for U16Vec2
impl AsMut<[u16; 3]> for U16Vec3
impl AsMut<[u16; 4]> for U16Vec4
impl AsMut<[u32; 2]> for UVec2
impl AsMut<[u32; 3]> for UVec3
impl AsMut<[u32; 4]> for UVec4
impl AsMut<[u64; 2]> for U64Vec2
impl AsMut<[u64; 3]> for U64Vec3
impl AsMut<[u64; 4]> for U64Vec4
impl<'a> AsMut<SurfaceRef> for devela::_dep::sdl2::surface::Surface<'a>
impl<'a, T> AsMut<[T]> for CSliceMut<'a, T>
impl<'a, T> AsMut<T> for devela::_dep::bumpalo::boxed::Box<'a, T>where
T: ?Sized,
impl<'bump, T> AsMut<[T]> for devela::_dep::bumpalo::collections::Vec<'bump, T>where
T: 'bump,
impl<'bump, T> AsMut<Vec<'bump, T>> for devela::_dep::bumpalo::collections::Vec<'bump, T>where
T: 'bump,
impl<A> AsMut<[<A as Array>::Item]> for SmallVec<A>where
A: Array,
impl<D> AsMut<ContentStyle> for StyledContent<D>where
D: Display,
impl<L, R> AsMut<str> for Either<L, R>
impl<L, R> AsMut<CStr> for Either<L, R>
Requires crate feature use_std
.
impl<L, R> AsMut<OsStr> for Either<L, R>
Requires crate feature use_std
.
impl<L, R> AsMut<Path> for Either<L, R>
Requires crate feature use_std
.