Lines Matching defs:Self
473 pub fn with_capacity(capacity: usize) -> Self { in with_capacity()
515 pub fn try_with_capacity(capacity: usize) -> Result<Self, TryReserveError> { in try_with_capacity()
589 pub unsafe fn from_raw_parts(ptr: *mut T, length: usize, capacity: usize) -> Self { in from_raw_parts()
611 pub const fn new_in(alloc: A) -> Self { in new_in()
660 pub fn with_capacity_in(capacity: usize, alloc: A) -> Self { in with_capacity_in()
707 pub fn try_with_capacity_in(capacity: usize, alloc: A) -> Result<Self, TryReserveError> { in try_with_capacity_in()
783 pub unsafe fn from_raw_parts_in(ptr: *mut T, length: usize, capacity: usize, alloc: A) -> Self { in from_raw_parts_in()
1904 pub fn append(&mut self, other: &mut Self) { in append()
2626 fn clone_from(this: &mut Self, other: &Self); in clone_from()
2631 default fn clone_from(this: &mut Self, other: &Self) { in clone_from()
2647 fn clone_from(this: &mut Self, other: &Self) { in clone_from()
2657 fn clone(&self) -> Self { in clone()
2667 fn clone(&self) -> Self { in clone()
2672 fn clone_from(&mut self, other: &Self) { in clone_from()
3146 fn from(s: Box<[T], A>) -> Self { in from()
3166 fn from(v: Vec<T, A>) -> Self { in from()