pub struct FunctionPostResponse {
pub data_output: Option<Vec<SamplesB64>>,
pub annotations: Option<Vec<Annotation>>,
pub details: Option<String>,
}Fields§
§data_output: Option<Vec<SamplesB64>>§annotations: Option<Vec<Annotation>>See https://github.com/sigmf/SigMF/blob/sigmf-v1.x/sigmf-spec.md#annotations-array
details: Option<String>Implementations§
Source§impl FunctionPostResponse
impl FunctionPostResponse
pub fn new() -> FunctionPostResponse
Trait Implementations§
Source§impl Clone for FunctionPostResponse
impl Clone for FunctionPostResponse
Source§fn clone(&self) -> FunctionPostResponse
fn clone(&self) -> FunctionPostResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FunctionPostResponse
impl Debug for FunctionPostResponse
Source§impl Default for FunctionPostResponse
impl Default for FunctionPostResponse
Source§impl<'de> Deserialize<'de> for FunctionPostResponse
impl<'de> Deserialize<'de> for FunctionPostResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FunctionPostResponse
impl PartialEq for FunctionPostResponse
Source§impl Serialize for FunctionPostResponse
impl Serialize for FunctionPostResponse
impl StructuralPartialEq for FunctionPostResponse
Auto Trait Implementations§
impl Freeze for FunctionPostResponse
impl RefUnwindSafe for FunctionPostResponse
impl Send for FunctionPostResponse
impl Sync for FunctionPostResponse
impl Unpin for FunctionPostResponse
impl UnwindSafe for FunctionPostResponse
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