pub unsafe trait MTLFunctionLogDebugLocation: NSObjectProtocol {
// Provided methods
fn functionName(&self) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
fn URL(&self) -> Option<Retained<NSURL>>
where Self: Sized + Message { ... }
fn line(&self) -> NSUInteger
where Self: Sized + Message { ... }
fn column(&self) -> NSUInteger
where Self: Sized + Message { ... }
}Available on crate feature
MTLFunctionLog only.Expand description
Provided Methods§
fn functionName(&self) -> Option<Retained<NSString>>
fn URL(&self) -> Option<Retained<NSURL>>
fn line(&self) -> NSUInteger
fn column(&self) -> NSUInteger
Trait Implementations§
Source§impl ProtocolType for dyn MTLFunctionLogDebugLocation
impl ProtocolType for dyn MTLFunctionLogDebugLocation
impl<T> ImplementedBy<T> for dyn MTLFunctionLogDebugLocation
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".