pub struct JSONArrayOfFloats;Implementations§
Source§impl JSONArrayOfFloats
impl JSONArrayOfFloats
pub fn parse_as_list_f64(json: String) -> Result<Vec<f64>, String>
pub fn to_json_from_list_f64(items: &Vec<f64>) -> Result<String, String>
pub fn parse_as_list_f32(json: String) -> Result<Vec<f32>, String>
pub fn to_json_from_list_f32(items: &Vec<f32>) -> Result<String, String>
Auto Trait Implementations§
impl Freeze for JSONArrayOfFloats
impl RefUnwindSafe for JSONArrayOfFloats
impl Send for JSONArrayOfFloats
impl Sync for JSONArrayOfFloats
impl Unpin for JSONArrayOfFloats
impl UnsafeUnpin for JSONArrayOfFloats
impl UnwindSafe for JSONArrayOfFloats
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