Lines Matching defs:from
1436 fn from(t: T) -> Self { in from() method
1457 fn from(boxed: Box<T, A>) -> Self { in from() function
1506 fn from(slice: &[T]) -> Box<[T]> { in from() method
1521 fn from(cow: Cow<'_, [T]>) -> Box<[T]> { in from() method
1544 fn from(s: &str) -> Box<str> { in from() method
1576 fn from(cow: Cow<'_, str>) -> Box<str> { in from() method
1603 fn from(s: Box<str, A>) -> Self { in from() method
1622 fn from(array: [T; N]) -> Box<[T]> { in from() method
2215 fn from(err: E) -> Box<dyn Error + 'a> { in from() method
2254 fn from(err: E) -> Box<dyn Error + Send + Sync + 'a> { in from() method
2276 fn from(err: String) -> Box<dyn Error + Send + Sync> { in from() method
2318 fn from(str_err: String) -> Box<dyn Error> { in from() method
2344 fn from(err: &str) -> Box<dyn Error + Send + Sync + 'a> { in from() method
2366 fn from(err: &str) -> Box<dyn Error> { in from() method
2388 fn from(err: Cow<'b, str>) -> Box<dyn Error + Send + Sync + 'a> { in from() method
2409 fn from(err: Cow<'a, str>) -> Box<dyn Error> { in from() method