more conversions for values
This commit is contained in:
parent
f630d138cb
commit
b4a393cce7
1 changed files with 36 additions and 0 deletions
36
src/types.rs
36
src/types.rs
|
@ -109,6 +109,42 @@ impl From<Value> for String {
|
|||
}
|
||||
}
|
||||
|
||||
impl From<Value> for i32 {
|
||||
fn from(value: Value) -> Self {
|
||||
match value {
|
||||
Value::Number(num) => num as i32,
|
||||
_ => 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl From<Value> for i64 {
|
||||
fn from(value: Value) -> Self {
|
||||
match value {
|
||||
Value::Number(num) => num,
|
||||
_ => 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl From<&Value> for i32 {
|
||||
fn from(value: &Value) -> Self {
|
||||
match value {
|
||||
Value::Number(num) => *num as i32,
|
||||
_ => 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl From<&Value> for i64 {
|
||||
fn from(value: &Value) -> Self {
|
||||
match value {
|
||||
Value::Number(num) => *num,
|
||||
_ => 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
||||
pub struct Symbol(pub String);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue