Merge pull request #520 from napi-rs/fix-clippy
style: fix clippy error
This commit is contained in:
commit
3e239f69b2
1 changed files with 3 additions and 3 deletions
|
@ -6,9 +6,9 @@ pub enum Either<A: NapiValue, B: NapiValue> {
|
||||||
B(B),
|
B(B),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: NapiValue> Into<Option<T>> for Either<T, JsUndefined> {
|
impl<T: NapiValue> From<Either<T, JsUndefined>> for Option<T> {
|
||||||
fn into(self) -> Option<T> {
|
fn from(value: Either<T, JsUndefined>) -> Option<T> {
|
||||||
match self {
|
match value {
|
||||||
Either::A(v) => Some(v),
|
Either::A(v) => Some(v),
|
||||||
Either::B(_) => None,
|
Either::B(_) => None,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue