Struct sensitive::string::String [−][src]
pub struct String(_);
Implementations
impl String
[src]
impl String
[src]pub fn new() -> Self
[src]
pub fn with_capacity(capacity: usize) -> Self
[src]
pub fn capacity(&self) -> usize
[src]
pub fn len(&self) -> usize
[src]
pub fn is_empty(&self) -> bool
[src]
pub fn reserve(&mut self, capacity: usize)
[src]
pub fn reserve_exact(&mut self, capacity: usize)
[src]
pub fn borrow(&self) -> Ref<'_>
[src]
pub fn borrow_mut(&mut self) -> RefMut<'_>
[src]
Trait Implementations
impl FromIterator<char> for String
[src]
impl FromIterator<char> for String
[src]fn from_iter<I>(into: I) -> Self where
I: IntoIterator<Item = char>,
[src]
fn from_iter<I>(into: I) -> Self where
I: IntoIterator<Item = char>,
[src]Creates a value from an iterator. Read more