Struct objc2_foundation::NSMutableString
source · [−]#[repr(C)]pub struct NSMutableString { /* private fields */ }
Expand description
A dynamic plain-text Unicode string object.
Implementations
sourceimpl NSMutableString
impl NSMutableString
Creating mutable strings.
sourcepub fn new() -> Id<Self, Owned>
pub fn new() -> Id<Self, Owned>
Construct an empty NSMutableString
.
sourcepub fn from_str(string: &str) -> Id<Self, Owned>
pub fn from_str(string: &str) -> Id<Self, Owned>
Creates a new NSMutableString
by copying the given string slice.
sourcepub fn from_nsstring(string: &NSString) -> Id<Self, Owned>
pub fn from_nsstring(string: &NSString) -> Id<Self, Owned>
Creates a new NSMutableString
from the given NSString
.
pub fn with_capacity(capacity: usize) -> Id<Self, Owned>
sourceimpl NSMutableString
impl NSMutableString
Mutating strings.
Methods from Deref<Target = NSString>
pub fn is_empty(&self) -> bool
sourcepub fn as_str<'r, 's: 'r, 'p: 'r>(
&'s self,
pool: &'p AutoreleasePool
) -> &'r str
pub fn as_str<'r, 's: 'r, 'p: 'r>(
&'s self,
pool: &'p AutoreleasePool
) -> &'r str
Get the str
representation of this.
TODO: Further explain this.
sourcepub fn has_prefix(&self, prefix: &NSString) -> bool
pub fn has_prefix(&self, prefix: &NSString) -> bool
Whether the given string matches the beginning characters of this string.
sourcepub fn has_suffix(&self, suffix: &NSString) -> bool
pub fn has_suffix(&self, suffix: &NSString) -> bool
Whether the given string matches the ending characters of this string.
Methods from Deref<Target = NSObject>
Methods from Deref<Target = Object>
sourcepub unsafe fn ivar<T>(&self, name: &str) -> &T where
T: Encode,
pub unsafe fn ivar<T>(&self, name: &str) -> &T where
T: Encode,
Returns a shared reference to the ivar with the given name.
Panics
Panics if the object has no ivar with the given name, or the type
encoding of the ivar differs from the type encoding of T
.
Safety
The caller must ensure that the ivar is actually of type T
.
Library implementors should expose a safe interface to the ivar.
sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &T where
T: Encode,
👎 Deprecated: Use Object::ivar
instead.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &T where
T: Encode,
Use Object::ivar
instead.
sourcepub unsafe fn ivar_mut<T>(&mut self, name: &str) -> &mut T where
T: Encode,
pub unsafe fn ivar_mut<T>(&mut self, name: &str) -> &mut T where
T: Encode,
Returns a mutable reference to the ivar with the given name.
Panics
Panics if the object has no ivar with the given name, or the type
encoding of the ivar differs from the type encoding of T
.
Safety
The caller must ensure that the ivar is actually of type T
.
Library implementors should expose a safe interface to the ivar.
sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut T where
T: Encode,
👎 Deprecated: Use Object::ivar_mut
instead.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut T where
T: Encode,
Use Object::ivar_mut
instead.
sourcepub unsafe fn set_ivar<T>(&mut self, name: &str, value: T) where
T: Encode,
pub unsafe fn set_ivar<T>(&mut self, name: &str, value: T) where
T: Encode,
Sets the value of the ivar with the given name.
Panics
Panics if the object has no ivar with the given name, or the type
encoding of the ivar differs from the type encoding of T
.
Safety
The caller must ensure that the ivar is actually of type T
.
Library implementors should expose a safe interface to the ivar.
Trait Implementations
sourceimpl AddAssign<&'_ NSString> for NSMutableString
impl AddAssign<&'_ NSString> for NSMutableString
sourcefn add_assign(&mut self, other: &NSString)
fn add_assign(&mut self, other: &NSString)
Performs the +=
operation. Read more
sourceimpl AsMut<NSMutableString> for NSMutableString
impl AsMut<NSMutableString> for NSMutableString
sourceimpl AsMut<NSObject> for NSMutableString
impl AsMut<NSObject> for NSMutableString
sourceimpl AsMut<NSString> for NSMutableString
impl AsMut<NSString> for NSMutableString
sourceimpl AsMut<Object> for NSMutableString
impl AsMut<Object> for NSMutableString
sourceimpl AsRef<NSMutableString> for NSMutableString
impl AsRef<NSMutableString> for NSMutableString
sourceimpl AsRef<NSObject> for NSMutableString
impl AsRef<NSObject> for NSMutableString
sourceimpl AsRef<NSString> for NSMutableString
impl AsRef<NSString> for NSMutableString
sourceimpl AsRef<Object> for NSMutableString
impl AsRef<Object> for NSMutableString
sourceimpl Borrow<NSObject> for NSMutableString
impl Borrow<NSObject> for NSMutableString
sourceimpl Borrow<NSString> for NSMutableString
impl Borrow<NSString> for NSMutableString
sourceimpl Borrow<Object> for NSMutableString
impl Borrow<Object> for NSMutableString
sourceimpl BorrowMut<NSObject> for NSMutableString
impl BorrowMut<NSObject> for NSMutableString
sourcefn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
Mutably borrows from an owned value. Read more
sourceimpl BorrowMut<NSString> for NSMutableString
impl BorrowMut<NSString> for NSMutableString
sourcefn borrow_mut(&mut self) -> &mut NSString
fn borrow_mut(&mut self) -> &mut NSString
Mutably borrows from an owned value. Read more
sourceimpl BorrowMut<Object> for NSMutableString
impl BorrowMut<Object> for NSMutableString
sourcefn borrow_mut(&mut self) -> &mut Object
fn borrow_mut(&mut self) -> &mut Object
Mutably borrows from an owned value. Read more
sourceimpl Debug for NSMutableString
impl Debug for NSMutableString
sourceimpl DefaultId for NSMutableString
impl DefaultId for NSMutableString
sourceimpl Deref for NSMutableString
impl Deref for NSMutableString
sourceimpl DerefMut for NSMutableString
impl DerefMut for NSMutableString
sourceimpl Display for NSMutableString
impl Display for NSMutableString
sourceimpl Hash for NSMutableString
impl Hash for NSMutableString
sourceimpl NSCopying for NSMutableString
impl NSCopying for NSMutableString
sourceimpl NSMutableCopying for NSMutableString
impl NSMutableCopying for NSMutableString
type Output = NSMutableString
type Output = NSMutableString
TODO
fn mutable_copy(&self) -> Id<Self::Output, Owned>
sourceimpl Ord for NSMutableString
impl Ord for NSMutableString
sourceimpl PartialEq<NSMutableString> for NSMutableString
impl PartialEq<NSMutableString> for NSMutableString
sourceimpl PartialEq<NSMutableString> for NSString
impl PartialEq<NSMutableString> for NSString
sourceimpl PartialEq<NSString> for NSMutableString
impl PartialEq<NSString> for NSMutableString
sourceimpl PartialOrd<NSMutableString> for NSMutableString
impl PartialOrd<NSMutableString> for NSMutableString
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NSMutableString> for NSString
impl PartialOrd<NSMutableString> for NSString
sourcefn partial_cmp(&self, other: &NSMutableString) -> Option<Ordering>
fn partial_cmp(&self, other: &NSMutableString) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NSString> for NSMutableString
impl PartialOrd<NSString> for NSMutableString
sourcefn partial_cmp(&self, other: &NSString) -> Option<Ordering>
fn partial_cmp(&self, other: &NSString) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl RefEncode for NSMutableString
impl RefEncode for NSMutableString
sourceconst ENCODING_REF: Encoding<'static> = ::objc2::Encoding::Object
const ENCODING_REF: Encoding<'static> = ::objc2::Encoding::Object
The Objective-C type-encoding for a reference of this type. Read more
sourceimpl ToOwned for NSMutableString
impl ToOwned for NSMutableString
type Owned = Id<NSMutableString, Owned>
type Owned = Id<NSMutableString, Owned>
The resulting type after obtaining ownership.
sourcefn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · sourcefn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl Write for NSMutableString
impl Write for NSMutableString
impl Eq for NSMutableString
impl Message for NSMutableString
impl Send for NSMutableString
impl Sync for NSMutableString
Auto Trait Implementations
impl !RefUnwindSafe for NSMutableString
impl !Unpin for NSMutableString
impl !UnwindSafe for NSMutableString
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more