pub struct JSONArrayOfIntegers;Implementations§
Source§impl JSONArrayOfIntegers
impl JSONArrayOfIntegers
pub fn parse_as_list_i128(json: String) -> Result<Vec<i128>, String>
pub fn to_json_from_list_i128(items: &Vec<i128>) -> Result<String, String>
pub fn parse_as_list_i64(json: String) -> Result<Vec<i64>, String>
pub fn to_json_from_list_i64(items: &Vec<i64>) -> Result<String, String>
pub fn parse_as_list_i32(json: String) -> Result<Vec<i32>, String>
pub fn to_json_from_list_i32(items: &Vec<i32>) -> Result<String, String>
pub fn parse_as_list_i16(json: String) -> Result<Vec<i16>, String>
pub fn to_json_from_list_i16(items: &Vec<i16>) -> Result<String, String>
pub fn parse_as_list_i8(json: String) -> Result<Vec<i8>, String>
pub fn to_json_from_list_i8(items: &Vec<i8>) -> Result<String, String>
pub fn parse_as_list_u128(json: String) -> Result<Vec<u128>, String>
pub fn to_json_from_list_u128(items: &Vec<u128>) -> Result<String, String>
pub fn parse_as_list_u64(json: String) -> Result<Vec<u64>, String>
pub fn to_json_from_list_u64(items: &Vec<u64>) -> Result<String, String>
pub fn parse_as_list_u32(json: String) -> Result<Vec<u32>, String>
pub fn to_json_from_list_u32(items: &Vec<u32>) -> Result<String, String>
pub fn parse_as_list_u16(json: String) -> Result<Vec<u16>, String>
pub fn to_json_from_list_u16(items: &Vec<u16>) -> Result<String, String>
pub fn parse_as_list_u8(json: String) -> Result<Vec<u8>, String>
pub fn to_json_from_list_u8(items: &Vec<u8>) -> Result<String, String>
Auto Trait Implementations§
impl Freeze for JSONArrayOfIntegers
impl RefUnwindSafe for JSONArrayOfIntegers
impl Send for JSONArrayOfIntegers
impl Sync for JSONArrayOfIntegers
impl Unpin for JSONArrayOfIntegers
impl UnsafeUnpin for JSONArrayOfIntegers
impl UnwindSafe for JSONArrayOfIntegers
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