Lines Matching defs:T
265 fn clone(&self) -> BqlCell<T> { in clone()
303 fn from(t: T) -> BqlCell<T> { in from()
332 pub const fn new(value: T) -> BqlCell<T> { in new()
351 pub fn set(&self, val: T) { in set()
370 pub fn replace(&self, val: T) -> T { in replace()
391 pub fn into_inner(self) -> T { in into_inner()
411 pub fn get(&self) -> T { in get()
434 pub const fn as_ptr(&self) -> *mut T { in as_ptr()
454 pub fn take(&self) -> T { in take()
520 pub const fn new(value: T) -> BqlRefCell<T> { in new()
596 pub fn borrow(&self) -> BqlRef<'_, T> { in borrow() argument
651 pub fn borrow_mut(&self) -> BqlRefMut<'_, T> { in borrow_mut() argument
685 pub const fn as_ptr(&self) -> *mut T { in as_ptr()
703 fn clone(&self) -> BqlRefCell<T> { in clone()
762 fn from(t: T) -> BqlRefCell<T> { in from()
830 fn deref(&self) -> &T { in deref()
848 pub fn clone(orig: &BqlRef<'b, T>) -> BqlRef<'b, T> { in clone() argument
913 fn deref(&self) -> &T { in deref()
921 fn deref_mut(&mut self) -> &mut T { in deref_mut()
1009 pub const fn as_mut_ptr(&self) -> *mut T { in as_mut_ptr()
1014 pub const fn as_ptr(&self) -> *const T { in as_ptr()
1025 pub const fn raw_get(slot: *mut Self) -> *mut T { in raw_get()