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