#[repr(C)]pub struct ICapeRegistryKeyWriter_VTable {
pub base: ICapeRegistryKey_VTable,
pub createSubKey: Option<unsafe extern "C" fn(me: *mut c_void, keyName: *const CapeCharacter, key: *mut *mut _ICapeRegistryKeyWriter) -> CapeResult>,
pub deleteSubKey: Option<unsafe extern "C" fn(me: *mut c_void, keyName: *const CapeCharacter) -> CapeResult>,
pub deleteValue: Option<unsafe extern "C" fn(me: *mut c_void, keyName: *const CapeCharacter, valueName: *const CapeCharacter) -> CapeResult>,
pub putStringValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter, value: *const CapeCharacter) -> CapeResult>,
pub putIntegerValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter, value: CapeInteger) -> CapeResult>,
pub putUUIDValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter, value: *const CapeUUID) -> CapeResult>,
pub putEmptyValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter) -> CapeResult>,
}Fields§
§base: ICapeRegistryKey_VTable§createSubKey: Option<unsafe extern "C" fn(me: *mut c_void, keyName: *const CapeCharacter, key: *mut *mut _ICapeRegistryKeyWriter) -> CapeResult>§deleteSubKey: Option<unsafe extern "C" fn(me: *mut c_void, keyName: *const CapeCharacter) -> CapeResult>§deleteValue: Option<unsafe extern "C" fn(me: *mut c_void, keyName: *const CapeCharacter, valueName: *const CapeCharacter) -> CapeResult>§putStringValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter, value: *const CapeCharacter) -> CapeResult>§putIntegerValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter, value: CapeInteger) -> CapeResult>§putUUIDValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter, value: *const CapeUUID) -> CapeResult>§putEmptyValue: Option<unsafe extern "C" fn(me: *mut c_void, valueName: *const CapeCharacter) -> CapeResult>Trait Implementations§
Source§impl Clone for ICapeRegistryKeyWriter_VTable
impl Clone for ICapeRegistryKeyWriter_VTable
Source§fn clone(&self) -> ICapeRegistryKeyWriter_VTable
fn clone(&self) -> ICapeRegistryKeyWriter_VTable
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 moreimpl Copy for ICapeRegistryKeyWriter_VTable
Auto Trait Implementations§
impl Freeze for ICapeRegistryKeyWriter_VTable
impl RefUnwindSafe for ICapeRegistryKeyWriter_VTable
impl Send for ICapeRegistryKeyWriter_VTable
impl Sync for ICapeRegistryKeyWriter_VTable
impl Unpin for ICapeRegistryKeyWriter_VTable
impl UnwindSafe for ICapeRegistryKeyWriter_VTable
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