#[repr(C)]pub struct BSAnimationGraphChannelVtbl {
pub CxxDrop: fn(this: &mut BSAnimationGraphChannel),
pub PollChannelUpdateImpl: fn(this: &BSAnimationGraphChannel, a_arg1: bool),
pub ResetImpl: fn(this: &BSAnimationGraphChannel),
}
Expand description
The virtual function table for BSAnimationGraphChannel
.
This struct defines function pointers to simulate the C++ virtual functions.
Fields§
§CxxDrop: fn(this: &mut BSAnimationGraphChannel)
Destructor function pointer.
PollChannelUpdateImpl: fn(this: &BSAnimationGraphChannel, a_arg1: bool)
Function pointer for polling channel update.
ResetImpl: fn(this: &BSAnimationGraphChannel)
Function pointer for resetting the channel.
Implementations§
Trait Implementations§
Source§impl Debug for BSAnimationGraphChannelVtbl
impl Debug for BSAnimationGraphChannelVtbl
Auto Trait Implementations§
impl Freeze for BSAnimationGraphChannelVtbl
impl RefUnwindSafe for BSAnimationGraphChannelVtbl
impl Send for BSAnimationGraphChannelVtbl
impl Sync for BSAnimationGraphChannelVtbl
impl Unpin for BSAnimationGraphChannelVtbl
impl UnwindSafe for BSAnimationGraphChannelVtbl
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