pub struct DescribeLogDirsResult {
pub error_code: i16,
pub log_dir: String,
pub topics: Vec<DescribeLogDirsTopicResult>,
pub total_bytes: i64,
pub usable_bytes: i64,
pub is_cordoned: bool,
}Fields§
§error_code: i16§log_dir: String§topics: Vec<DescribeLogDirsTopicResult>§total_bytes: i64§usable_bytes: i64§is_cordoned: boolTrait Implementations§
Source§impl Clone for DescribeLogDirsResult
impl Clone for DescribeLogDirsResult
Source§fn clone(&self) -> DescribeLogDirsResult
fn clone(&self) -> DescribeLogDirsResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DescribeLogDirsResult
impl Debug for DescribeLogDirsResult
impl Eq for DescribeLogDirsResult
Source§impl PartialEq for DescribeLogDirsResult
impl PartialEq for DescribeLogDirsResult
impl StructuralPartialEq for DescribeLogDirsResult
Auto Trait Implementations§
impl Freeze for DescribeLogDirsResult
impl RefUnwindSafe for DescribeLogDirsResult
impl Send for DescribeLogDirsResult
impl Sync for DescribeLogDirsResult
impl Unpin for DescribeLogDirsResult
impl UnsafeUnpin for DescribeLogDirsResult
impl UnwindSafe for DescribeLogDirsResult
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