Struct objc2::foundation::NSMutableString
source · #[repr(C)]pub struct NSMutableString { /* private fields */ }
Expand description
A dynamic plain-text Unicode string object.
Implementations§
source§impl NSMutableString
impl NSMutableString
Creating mutable strings.
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> ⓘ
source§impl NSMutableString
impl NSMutableString
Mutating strings.
Methods from Deref<Target = NSString>§
sourcepub fn concat(&self, other: &Self) -> Id<Self, Shared>
pub fn concat(&self, other: &Self) -> Id<Self, Shared>
Create a new string by appending the given string to self.
Example
use objc2::ns_string;
let error_tag = ns_string!("Error: ");
let error_string = ns_string!("premature end of file.");
let error_message = error_tag.concat(error_string);
assert_eq!(&*error_message, ns_string!("Error: premature end of file."));
sourcepub fn join_path(&self, other: &Self) -> Id<Self, Shared>
pub fn join_path(&self, other: &Self) -> Id<Self, Shared>
Create a new string by appending the given string, separated by a path separator.
This is similar to Path::join
.
Note that this method only works with file paths (not, for example, string representations of URLs).
Examples
use objc2::ns_string;
let extension = ns_string!("scratch.tiff");
assert_eq!(&*ns_string!("/tmp").join_path(extension), ns_string!("/tmp/scratch.tiff"));
assert_eq!(&*ns_string!("/tmp/").join_path(extension), ns_string!("/tmp/scratch.tiff"));
assert_eq!(&*ns_string!("/").join_path(extension), ns_string!("/scratch.tiff"));
assert_eq!(&*ns_string!("").join_path(extension), ns_string!("scratch.tiff"));
sourcepub fn len_utf16(&self) -> usize
pub fn len_utf16(&self) -> usize
The number of UTF-16 code units in the string.
See also NSString::len
.
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>§
sourcepub fn is_kind_of<T: ClassType>(&self) -> bool
pub fn is_kind_of<T: ClassType>(&self) -> bool
Check if the object is an instance of the class, or one of it’s subclasses.
See Apple’s documentation for more details on what you may (and what you may not) do with this information.
Methods from Deref<Target = Object>§
sourcepub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
pub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
Returns a pointer to the instance variable / ivar with the given name.
This is similar to UnsafeCell::get
, see that for more information
on what is and isn’t safe to do.
Usually you will have defined the instance variable yourself with
ClassBuilder::add_ivar
, the type of the ivar T
must match the
type used in that.
Attempting to access or modify private implementation details of a class that you do no control using this is not supported, and may invoke undefined behaviour.
Library implementors are strongly encouraged to expose a safe interface to the ivar.
Panics
May panic if the object has no ivar with the given name. May also
panic if the type encoding of the ivar differs from the type encoding
of T
.
This should purely seen as help while debugging and is not guaranteed
(e.g. it may be disabled when debug_assertions
are off).
Safety
The object must have an instance variable with the given name, and it
must be of type T
. Any invariants that the object have assumed about
the value of the instance variable must not be violated.
No thread syncronization is done on accesses to the variable, so you must ensure that any access to the returned pointer do not cause data races, and that Rust’s mutability rules are not otherwise violated.
sourcepub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
pub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
Returns a reference to the instance variable with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
No thread syncronization is done, so you must ensure that no other
thread is concurrently mutating the variable. This requirement can be
considered upheld if all mutation happens through Object::ivar_mut
(since that takes &mut self
).
sourcepub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
👎Deprecated: Use Object::ivar
instead.
pub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
Object::ivar
instead.sourcepub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
pub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
Returns a mutable reference to the ivar with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
This access happens through &mut self
, which means we know it to be
the only reference, hence you do not need to do any work to ensure
that data races do not happen.
sourcepub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
👎Deprecated: Use Object::ivar_mut
instead.
pub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
Object::ivar_mut
instead.sourcepub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
pub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
Sets the value of the ivar with the given name.
This is just a helpful shorthand for Object::ivar_mut
, see that
for more information.
Safety
Same as Object::ivar_mut
.
Trait Implementations§
source§impl AddAssign<&NSString> for NSMutableString
impl AddAssign<&NSString> for NSMutableString
source§fn add_assign(&mut self, other: &NSString)
fn add_assign(&mut self, other: &NSString)
+=
operation. Read moresource§impl AsMut<NSMutableString> for NSMutableString
impl AsMut<NSMutableString> for NSMutableString
source§impl AsMut<NSObject> for NSMutableString
impl AsMut<NSObject> for NSMutableString
source§impl AsMut<NSString> for NSMutableString
impl AsMut<NSString> for NSMutableString
source§impl AsMut<Object> for NSMutableString
impl AsMut<Object> for NSMutableString
source§impl AsRef<NSMutableString> for NSMutableString
impl AsRef<NSMutableString> for NSMutableString
source§impl AsRef<NSObject> for NSMutableString
impl AsRef<NSObject> for NSMutableString
source§impl AsRef<NSString> for NSMutableString
impl AsRef<NSString> for NSMutableString
source§impl AsRef<Object> for NSMutableString
impl AsRef<Object> for NSMutableString
source§impl Borrow<NSObject> for NSMutableString
impl Borrow<NSObject> for NSMutableString
source§impl Borrow<NSString> for NSMutableString
impl Borrow<NSString> for NSMutableString
source§impl Borrow<Object> for NSMutableString
impl Borrow<Object> for NSMutableString
source§impl BorrowMut<NSObject> for NSMutableString
impl BorrowMut<NSObject> for NSMutableString
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSString> for NSMutableString
impl BorrowMut<NSString> for NSMutableString
source§fn borrow_mut(&mut self) -> &mut NSString
fn borrow_mut(&mut self) -> &mut NSString
source§impl BorrowMut<Object> for NSMutableString
impl BorrowMut<Object> for NSMutableString
source§fn borrow_mut(&mut self) -> &mut Object
fn borrow_mut(&mut self) -> &mut Object
source§impl ClassType for NSMutableString
impl ClassType for NSMutableString
source§impl Debug for NSMutableString
impl Debug for NSMutableString
source§impl DefaultId for NSMutableString
impl DefaultId for NSMutableString
source§impl Deref for NSMutableString
impl Deref for NSMutableString
source§impl DerefMut for NSMutableString
impl DerefMut for NSMutableString
source§impl Display for NSMutableString
impl Display for NSMutableString
source§impl Hash for NSMutableString
impl Hash for NSMutableString
source§impl NSCopying for NSMutableString
impl NSCopying for NSMutableString
source§impl NSMutableCopying for NSMutableString
impl NSMutableCopying for NSMutableString
§type Output = NSMutableString
type Output = NSMutableString
fn mutable_copy(&self) -> Id<Self::Output, Owned> ⓘ
source§impl Ord for NSMutableString
impl Ord for NSMutableString
source§impl PartialEq<NSMutableString> for NSMutableString
impl PartialEq<NSMutableString> for NSMutableString
source§fn eq(&self, other: &NSMutableString) -> bool
fn eq(&self, other: &NSMutableString) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NSMutableString> for NSString
impl PartialEq<NSMutableString> for NSString
source§fn eq(&self, other: &NSMutableString) -> bool
fn eq(&self, other: &NSMutableString) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NSString> for NSMutableString
impl PartialEq<NSString> for NSMutableString
source§impl PartialOrd<NSMutableString> for NSMutableString
impl PartialOrd<NSMutableString> for NSMutableString
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NSMutableString> for NSString
impl PartialOrd<NSMutableString> for NSString
source§fn partial_cmp(&self, other: &NSMutableString) -> Option<Ordering>
fn partial_cmp(&self, other: &NSMutableString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NSString> for NSMutableString
impl PartialOrd<NSString> for NSMutableString
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more