Struct mutable_constant::Mc

source ·
pub struct Mc<T>(_);
Expand description

A smart pointer that allows mutation on immutable values.

This uses a *mut T internally, so most internal operations are unsafe. However, thanks to Rust’s borrowing guarantees, many of these operations are safe when used publicly. The only operation that is not safe is as_defiant_mut, which creates a mutable reference in defiance of Rust’s rules.

Implementations§

source§

impl<T> Mc<T>

source

pub fn new(t: T) -> Mc<T>

Creates a new Mc from a value.

Example
use mutable_constant::Mc;
 
let mc = Mc::new(42);
source

pub unsafe fn as_defiant_mut(&self) -> &mut T

Gets a mutable reference to the inner value.

Safety

This is unsafe because the mutable reference does not obey the borrow checker. For example, a mutable reference to a Mc can be created while there is an immutable reference to the same Mc. If you do not need this specific behavior, use as_mut instead.

Example
use mutable_constant::Mc;
 
let mut mc = Mc::new(42);
 
unsafe {
    *mc.as_defiant_mut() = 43;
}

Trait Implementations§

source§

impl<T> AsMut<T> for Mc<T>

source§

fn as_mut(&mut self) -> &mut T

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T> AsRef<T> for Mc<T>

source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> Clone for Mc<T>where T: Clone,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Debug for Mc<T>where T: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Deref for Mc<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> DerefMut for Mc<T>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<T> Display for Mc<T>where T: Display,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Drop for Mc<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Mc<T>where T: RefUnwindSafe,

§

impl<T> !Send for Mc<T>

§

impl<T> !Sync for Mc<T>

§

impl<T> Unpin for Mc<T>

§

impl<T> UnwindSafe for Mc<T>where T: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.