pub struct String;
Expand description
An atom containing a UTF-8 encoded string.
Trait Implementations§
Source§impl<'a, 'b> Atom<'a, 'b> for Stringwhere
'a: 'b,
impl<'a, 'b> Atom<'a, 'b> for Stringwhere
'a: 'b,
Source§type ReadParameter = ()
type ReadParameter = ()
The atom-specific parameter of the
read
function. Read moreSource§type ReadHandle = &'a str
type ReadHandle = &'a str
The return value of the
read
function. Read moreSource§type WriteParameter = ()
type WriteParameter = ()
The atom-specific parameter of the
write
function. Read moreSource§type WriteHandle = StringWriter<'a, 'b>
type WriteHandle = StringWriter<'a, 'b>
The return value of the
write
function. Read moreSource§fn init(frame: FramedMutSpace<'a, 'b>, _: ()) -> Option<StringWriter<'a, 'b>>
fn init(frame: FramedMutSpace<'a, 'b>, _: ()) -> Option<StringWriter<'a, 'b>>
Initialize the body of the atom. Read more
Auto Trait Implementations§
impl Freeze for String
impl RefUnwindSafe for String
impl Send for String
impl Sync for String
impl Unpin for String
impl UnwindSafe for String
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