pub struct StringHandle(/* private fields */);
Expand description
A handle to a string returned by some api.
Then the String can be retrieved with Session::get_string
Trait Implementations§
Source§impl Clone for StringHandle
impl Clone for StringHandle
Source§fn clone(&self) -> StringHandle
fn clone(&self) -> StringHandle
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StringHandle
impl Debug for StringHandle
impl Copy for StringHandle
Auto Trait Implementations§
impl Freeze for StringHandle
impl RefUnwindSafe for StringHandle
impl Send for StringHandle
impl Sync for StringHandle
impl Unpin for StringHandle
impl UnwindSafe for StringHandle
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