pub trait ILinkNode_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self)
where Self: Sized { ... }
fn finalize(self)
where Self: Sized { ... }
fn get_instance_id(self) -> i32
where Self: Sized { ... }
fn set_instance_id(self, instance_id: i32)
where Self: Sized { ... }
fn dispose(self)
where Self: Sized { ... }
fn is_valid(self) -> bool
where Self: Sized { ... }
fn get_sort_key(self) -> i32
where Self: Sized { ... }
fn on_serialize(self, stream: Stream_2)
where Self: Sized + Into<IlInstance> { ... }
fn on_deserialize(self, stream: Stream_2, version: i32)
where Self: Sized + Into<IlInstance> { ... }
fn op_implicit(node: LinkNode_1<T0>) -> LinkedListNode_1<T0> { ... }
}Provided Methods§
fn ctor(self)where
Self: Sized,
fn finalize(self)where
Self: Sized,
fn get_instance_id(self) -> i32where
Self: Sized,
fn set_instance_id(self, instance_id: i32)where
Self: Sized,
fn dispose(self)where
Self: Sized,
fn is_valid(self) -> boolwhere
Self: Sized,
fn get_sort_key(self) -> i32where
Self: Sized,
fn on_serialize(self, stream: Stream_2)where
Self: Sized + Into<IlInstance>,
fn on_deserialize(self, stream: Stream_2, version: i32)where
Self: Sized + Into<IlInstance>,
fn op_implicit(node: LinkNode_1<T0>) -> LinkedListNode_1<T0>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.