pub struct Protocol<'a> { /* private fields */ }
Expand description
This class represents an Objective-C @protocol
Implementations§
§impl Protocol<'_>
impl Protocol<'_>
pub fn mangled_name(&self) -> String
pub fn mangled_name(&self) -> String
Mangled name of the protocol
pub fn optional_methods(&self) -> OptionalMethods<'_> ⓘ
pub fn optional_methods(&self) -> OptionalMethods<'_> ⓘ
Iterator over the methods that could be overridden
pub fn required_methods(&self) -> RequiredMethods<'_> ⓘ
pub fn required_methods(&self) -> RequiredMethods<'_> ⓘ
Iterator over the methods of this protocol that must be implemented
pub fn properties(&self) -> Properties<'_> ⓘ
pub fn properties(&self) -> Properties<'_> ⓘ
Iterator over the properties defined in this protocol
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Protocol<'a>
impl<'a> !Send for Protocol<'a>
impl<'a> !Sync for Protocol<'a>
impl<'a> Unpin for Protocol<'a>
impl<'a> UnwindSafe for Protocol<'a>
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