Trait SetParameterValue
Source pub trait SetParameterValue {
// Required methods
fn to_bytes_as_bool(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_i8(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_u8(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_i16(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_u16(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_i32(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_u32(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_f32(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_i64(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_u64(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_f64(&self) -> Vec<u8> ⓘ;
fn to_bytes_as_string(&self) -> Vec<u8> ⓘ;
}