menu
TryFrom
import { TryFrom } from "destack:convert";
Fallible conversion from T.
1export newtype interface TryFrom<T, E = Error> {2 static tryFrom(value: T): Result<this, E>;3}Members
static tryFrom(value: T): Result<this, E>Convert
value, or return an error.