Struct objc2::foundation::NSAttributedString
source · #[repr(C)]pub struct NSAttributedString { /* private fields */ }
Expand description
A string that has associated attributes for portions of its text.
Examples of attributes could be: Visual style, hyperlinks, or accessibility data.
Conceptually, each UTF-16 code unit in an attributed string has its own collection of attributes - most often though
Only the most basic functionality is defined here, the AppKit
framework contains most of the extension methods.
Implementations§
source§impl NSAttributedString
impl NSAttributedString
Creating attributed strings.
sourcepub fn new_with_attributes(
string: &NSString,
attributes: &NSDictionary<NSAttributedStringKey, Object>
) -> Id<Self, Shared>
pub fn new_with_attributes( string: &NSString, attributes: &NSDictionary<NSAttributedStringKey, Object> ) -> Id<Self, Shared>
Creates a new attributed string from the given string and attributes.
The attributes are associated with every UTF-16 code unit in the string.
sourcepub fn from_nsstring(string: &NSString) -> Id<Self, Shared>
pub fn from_nsstring(string: &NSString) -> Id<Self, Shared>
Creates a new attributed string without any attributes.
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 AsMut<NSAttributedString> for NSAttributedString
impl AsMut<NSAttributedString> for NSAttributedString
source§impl AsMut<NSAttributedString> for NSMutableAttributedString
impl AsMut<NSAttributedString> for NSMutableAttributedString
source§fn as_mut(&mut self) -> &mut NSAttributedString
fn as_mut(&mut self) -> &mut NSAttributedString
source§impl AsMut<NSObject> for NSAttributedString
impl AsMut<NSObject> for NSAttributedString
source§impl AsMut<Object> for NSAttributedString
impl AsMut<Object> for NSAttributedString
source§impl AsRef<NSAttributedString> for NSAttributedString
impl AsRef<NSAttributedString> for NSAttributedString
source§impl AsRef<NSAttributedString> for NSMutableAttributedString
impl AsRef<NSAttributedString> for NSMutableAttributedString
source§fn as_ref(&self) -> &NSAttributedString
fn as_ref(&self) -> &NSAttributedString
source§impl AsRef<NSObject> for NSAttributedString
impl AsRef<NSObject> for NSAttributedString
source§impl AsRef<Object> for NSAttributedString
impl AsRef<Object> for NSAttributedString
source§impl Borrow<NSAttributedString> for NSMutableAttributedString
impl Borrow<NSAttributedString> for NSMutableAttributedString
source§fn borrow(&self) -> &NSAttributedString
fn borrow(&self) -> &NSAttributedString
source§impl Borrow<NSObject> for NSAttributedString
impl Borrow<NSObject> for NSAttributedString
source§impl Borrow<Object> for NSAttributedString
impl Borrow<Object> for NSAttributedString
source§impl BorrowMut<NSAttributedString> for NSMutableAttributedString
impl BorrowMut<NSAttributedString> for NSMutableAttributedString
source§fn borrow_mut(&mut self) -> &mut NSAttributedString
fn borrow_mut(&mut self) -> &mut NSAttributedString
source§impl BorrowMut<NSObject> for NSAttributedString
impl BorrowMut<NSObject> for NSAttributedString
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<Object> for NSAttributedString
impl BorrowMut<Object> for NSAttributedString
source§fn borrow_mut(&mut self) -> &mut Object
fn borrow_mut(&mut self) -> &mut Object
source§impl ClassType for NSAttributedString
impl ClassType for NSAttributedString
source§impl Debug for NSAttributedString
impl Debug for NSAttributedString
source§impl DefaultId for NSAttributedString
impl DefaultId for NSAttributedString
source§impl Deref for NSAttributedString
impl Deref for NSAttributedString
source§impl DerefMut for NSAttributedString
impl DerefMut for NSAttributedString
source§impl Hash for NSAttributedString
impl Hash for NSAttributedString
source§impl NSCopying for NSAttributedString
impl NSCopying for NSAttributedString
source§impl NSMutableCopying for NSAttributedString
impl NSMutableCopying for NSAttributedString
§type Output = NSMutableAttributedString
type Output = NSMutableAttributedString
fn mutable_copy(&self) -> Id<Self::Output, Owned> ⓘ
source§impl PartialEq<NSAttributedString> for NSAttributedString
impl PartialEq<NSAttributedString> for NSAttributedString
source§fn eq(&self, other: &NSAttributedString) -> bool
fn eq(&self, other: &NSAttributedString) -> bool
self
and other
values to be equal, and is used
by ==
.