Lines Matching defs:BqlRefCell
469 pub struct BqlRefCell<T> { struct
486 // components of a `BqlRefCell` (e.g., different ranges of a slice). argument
509 impl<T> BqlRefCell<T> { impl
548 impl<T> BqlRefCell<T> { implementation
694 unsafe impl<T> Send for BqlRefCell<T> where T: Send {} implementation
695 unsafe impl<T> Sync for BqlRefCell<T> {} implementation
697 impl<T: Clone> Clone for BqlRefCell<T> { implementation
717 impl<T: Default> Default for BqlRefCell<T> { implementation
725 impl<T: PartialEq> PartialEq for BqlRefCell<T> { implementation
736 impl<T: Eq> Eq for BqlRefCell<T> {} implementation
738 impl<T: PartialOrd> PartialOrd for BqlRefCell<T> { implementation
749 impl<T: Ord> Ord for BqlRefCell<T> { implementation
760 impl<T> From<T> for BqlRefCell<T> { implementation