#[repr(C)]pub struct CSTL_CopyType {
pub move_type: CSTL_MoveType,
pub copy: CSTL_Copy,
pub fill: CSTL_Fill,
}Expand description
Function table for a type that can be copied by calling copy
on a range of objects of that type to another range, or moved, or destroyed.
It is valid for copy to bind the same function as move_type.move.
Fields§
§move_type: CSTL_MoveType§copy: CSTL_Copy§fill: CSTL_FillTrait Implementations§
Source§impl Clone for CSTL_CopyType
impl Clone for CSTL_CopyType
Source§fn clone(&self) -> CSTL_CopyType
fn clone(&self) -> CSTL_CopyType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CSTL_CopyType
impl Debug for CSTL_CopyType
impl Copy for CSTL_CopyType
Auto Trait Implementations§
impl Freeze for CSTL_CopyType
impl RefUnwindSafe for CSTL_CopyType
impl Send for CSTL_CopyType
impl Sync for CSTL_CopyType
impl Unpin for CSTL_CopyType
impl UnwindSafe for CSTL_CopyType
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