pub struct SamplesCloud {
pub account_name: String,
pub container_name: String,
pub file_path: String,
pub sas_token: Option<String>,
pub byte_offset: Option<i32>,
pub byte_length: Option<i32>,
pub data_type: DataType,
pub sample_rate: Option<f32>,
pub center_freq: Option<f32>,
}Fields§
§account_name: String§container_name: String§file_path: String§sas_token: Option<String>§byte_offset: Option<i32>§byte_length: Option<i32>§data_type: DataType§sample_rate: Option<f32>§center_freq: Option<f32>Implementations§
Source§impl SamplesCloud
impl SamplesCloud
Trait Implementations§
Source§impl Clone for SamplesCloud
impl Clone for SamplesCloud
Source§fn clone(&self) -> SamplesCloud
fn clone(&self) -> SamplesCloud
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 SamplesCloud
impl Debug for SamplesCloud
Source§impl<'de> Deserialize<'de> for SamplesCloud
impl<'de> Deserialize<'de> for SamplesCloud
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 SamplesCloud
impl PartialEq for SamplesCloud
Source§impl Serialize for SamplesCloud
impl Serialize for SamplesCloud
impl StructuralPartialEq for SamplesCloud
Auto Trait Implementations§
impl Freeze for SamplesCloud
impl RefUnwindSafe for SamplesCloud
impl Send for SamplesCloud
impl Sync for SamplesCloud
impl Unpin for SamplesCloud
impl UnwindSafe for SamplesCloud
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