pub struct RddPartitionInfo {
pub block_name: Option<String>,
pub disk_used: Option<i64>,
pub executors: Option<Vec<String>>,
pub memory_used: Option<i64>,
pub storage_level: Option<String>,
}Expand description
Information about RDD partitions.
This type is not used in any activity, and only used as part of another schema.
Fields§
§block_name: Option<String>no description provided
disk_used: Option<i64>no description provided
executors: Option<Vec<String>>no description provided
memory_used: Option<i64>no description provided
storage_level: Option<String>no description provided
Trait Implementations§
Source§impl Clone for RddPartitionInfo
impl Clone for RddPartitionInfo
Source§fn clone(&self) -> RddPartitionInfo
fn clone(&self) -> RddPartitionInfo
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 RddPartitionInfo
impl Debug for RddPartitionInfo
Source§impl Default for RddPartitionInfo
impl Default for RddPartitionInfo
Source§fn default() -> RddPartitionInfo
fn default() -> RddPartitionInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RddPartitionInfo
impl<'de> Deserialize<'de> for RddPartitionInfo
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 RddPartitionInfo
impl Serialize for RddPartitionInfo
impl Part for RddPartitionInfo
Auto Trait Implementations§
impl Freeze for RddPartitionInfo
impl RefUnwindSafe for RddPartitionInfo
impl Send for RddPartitionInfo
impl Sync for RddPartitionInfo
impl Unpin for RddPartitionInfo
impl UnwindSafe for RddPartitionInfo
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