pub enum Pageability {
Pageable,
NonPageable(NonPageableReason),
}Expand description
Pageability classification. Non-pageable tensors remain valid and use the existing resident/materializing execution path.
Variants§
Pageable
NonPageable(NonPageableReason)
Trait Implementations§
Source§impl Clone for Pageability
impl Clone for Pageability
Source§fn clone(&self) -> Pageability
fn clone(&self) -> Pageability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Pageability
impl Debug for Pageability
impl Eq for Pageability
Source§impl PartialEq for Pageability
impl PartialEq for Pageability
impl StructuralPartialEq for Pageability
Auto Trait Implementations§
impl Freeze for Pageability
impl RefUnwindSafe for Pageability
impl Send for Pageability
impl Sync for Pageability
impl Unpin for Pageability
impl UnsafeUnpin for Pageability
impl UnwindSafe for Pageability
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