Enum typescript_tools::pin::PinErrorKind
source · pub enum PinErrorKind {
FromFile(FromFileError),
EnumeratePackageManifests(EnumeratePackageManifestsError),
Write(WriteError),
NonStringVersionNumber {
package_name: String,
dependency_name: String,
},
}
Variants§
FromFile(FromFileError)
EnumeratePackageManifests(EnumeratePackageManifestsError)
Write(WriteError)
NonStringVersionNumber
Trait Implementations§
source§impl Debug for PinErrorKind
impl Debug for PinErrorKind
source§impl From<PinErrorKind> for PinError
impl From<PinErrorKind> for PinError
source§fn from(kind: PinErrorKind) -> Self
fn from(kind: PinErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for PinErrorKind
impl Send for PinErrorKind
impl Sync for PinErrorKind
impl Unpin for PinErrorKind
impl !UnwindSafe for PinErrorKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more