pub struct StreamBlockData {
pub deserialized: Option<bool>,
pub disk_size: Option<i64>,
pub executor_id: Option<String>,
pub host_port: Option<String>,
pub mem_size: Option<i64>,
pub name: Option<String>,
pub storage_level: Option<String>,
pub use_disk: Option<bool>,
pub use_memory: Option<bool>,
}Expand description
Stream Block Data.
This type is not used in any activity, and only used as part of another schema.
Fields§
§deserialized: Option<bool>no description provided
disk_size: Option<i64>no description provided
executor_id: Option<String>no description provided
host_port: Option<String>no description provided
mem_size: Option<i64>no description provided
name: Option<String>no description provided
storage_level: Option<String>no description provided
use_disk: Option<bool>no description provided
use_memory: Option<bool>no description provided
Trait Implementations§
Source§impl Clone for StreamBlockData
impl Clone for StreamBlockData
Source§fn clone(&self) -> StreamBlockData
fn clone(&self) -> StreamBlockData
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 StreamBlockData
impl Debug for StreamBlockData
Source§impl Default for StreamBlockData
impl Default for StreamBlockData
Source§fn default() -> StreamBlockData
fn default() -> StreamBlockData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamBlockData
impl<'de> Deserialize<'de> for StreamBlockData
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 Serialize for StreamBlockData
impl Serialize for StreamBlockData
impl Part for StreamBlockData
Auto Trait Implementations§
impl Freeze for StreamBlockData
impl RefUnwindSafe for StreamBlockData
impl Send for StreamBlockData
impl Sync for StreamBlockData
impl Unpin for StreamBlockData
impl UnwindSafe for StreamBlockData
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