implement IntoAttributeValue for usize
This commit is contained in:
parent
ec31c2b4a3
commit
d63c7b991d
1 changed files with 6 additions and 0 deletions
|
@ -87,6 +87,12 @@ pub trait IntoAttributeValue {
|
||||||
fn into_attribute_value(self) -> Option<String>;
|
fn into_attribute_value(self) -> Option<String>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl IntoAttributeValue for usize {
|
||||||
|
fn into_attribute_value(self) -> Option<String> {
|
||||||
|
Some(format!("{}", self))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl IntoAttributeValue for String {
|
impl IntoAttributeValue for String {
|
||||||
fn into_attribute_value(self) -> Option<String> {
|
fn into_attribute_value(self) -> Option<String> {
|
||||||
Some(self)
|
Some(self)
|
||||||
|
|
Loading…
Reference in a new issue