pub struct FrameAccountMut<'a> { /* private fields */ }Expand description
Mutable account view within a Frame.
When this is dropped, the mutable borrow tracking bit is cleared, allowing the account to be re-borrowed.
Implementations§
Source§impl<'a> FrameAccountMut<'a>
impl<'a> FrameAccountMut<'a>
Sourcepub fn view(&self) -> &AccountView
pub fn view(&self) -> &AccountView
The underlying AccountView.
Trait Implementations§
Source§impl<'a> Drop for FrameAccountMut<'a>
impl<'a> Drop for FrameAccountMut<'a>
Auto Trait Implementations§
impl<'a> Freeze for FrameAccountMut<'a>
impl<'a> RefUnwindSafe for FrameAccountMut<'a>
impl<'a> Send for FrameAccountMut<'a>
impl<'a> Sync for FrameAccountMut<'a>
impl<'a> Unpin for FrameAccountMut<'a>
impl<'a> UnsafeUnpin for FrameAccountMut<'a>
impl<'a> !UnwindSafe for FrameAccountMut<'a>
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