#[repr(u32)]pub enum OwnTransferablePolicy {
OwnsTransferablesIfAny = 0,
IgnoreTransferablesIfAny = 1,
NoTransferables = 2,
}Variants§
OwnsTransferablesIfAny = 0
The buffer owns any Transferables that it might contain, and should properly release them upon destruction.
IgnoreTransferablesIfAny = 1
Do not free any Transferables within this buffer when deleting it. This is used to mark a clone buffer as containing data from another process, and so it can’t legitimately contain pointers. If the buffer claims to have transferables, it’s a bug or an attack. This is also used for abandon(), where a buffer still contains raw data but the ownership has been given over to some other entity.
NoTransferables = 2
A buffer that cannot contain Transferables at all. This usually means the buffer is empty (not yet filled in, or having been cleared).
Trait Implementations§
Source§impl Clone for OwnTransferablePolicy
impl Clone for OwnTransferablePolicy
Source§fn clone(&self) -> OwnTransferablePolicy
fn clone(&self) -> OwnTransferablePolicy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OwnTransferablePolicy
impl Debug for OwnTransferablePolicy
Source§impl Hash for OwnTransferablePolicy
impl Hash for OwnTransferablePolicy
Source§impl PartialEq for OwnTransferablePolicy
impl PartialEq for OwnTransferablePolicy
impl Copy for OwnTransferablePolicy
impl Eq for OwnTransferablePolicy
impl StructuralPartialEq for OwnTransferablePolicy
Auto Trait Implementations§
impl Freeze for OwnTransferablePolicy
impl RefUnwindSafe for OwnTransferablePolicy
impl Send for OwnTransferablePolicy
impl Sync for OwnTransferablePolicy
impl Unpin for OwnTransferablePolicy
impl UnwindSafe for OwnTransferablePolicy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 4 bytes
Size for each variant:
OwnsTransferablesIfAny: 0 bytesIgnoreTransferablesIfAny: 0 bytesNoTransferables: 0 bytes