pub trait CFPropertyListSubClass: TCFType {
// Provided methods
fn to_CFPropertyList(&self) -> CFPropertyList { ... }
fn into_CFPropertyList(self) -> CFPropertyList
where Self: Sized { ... }
}
Expand description
Trait for all subclasses of CFPropertyList
.
Provided Methods§
sourcefn to_CFPropertyList(&self) -> CFPropertyList
fn to_CFPropertyList(&self) -> CFPropertyList
Create an instance of the superclass type CFPropertyList
for this instance.
sourcefn into_CFPropertyList(self) -> CFPropertyListwhere
Self: Sized,
fn into_CFPropertyList(self) -> CFPropertyListwhere Self: Sized,
Equal to to_CFPropertyList
, but consumes self and avoids changing the reference count.
Object Safety§
This trait is not object safe.