Lines Matching defs:E
358 pub fn pin_slice<Func, Item, E>(
362 ) -> Result<Pin<Box<[T], A>>, E>
365 Item: PinInit<T, E>,
366 E: From<AllocError>,
462 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> {
472 fn write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> {
489 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Pin<Self>, E>
491 E: From<AllocError>,
497 fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E>
499 E: From<AllocError>,