pub struct Detail {
pub panel: Panel,
pub name: String,
pub id: String,
pub kind: Option<String>,
pub section: &'static str,
pub data: Option<DetailData>,
pub show_raw: bool,
pub scroll: u16,
}Fields§
§panel: Panel§name: String§id: String§kind: Option<String>Item kind for Unity Catalog leaves (TABLE / VIEW / VOLUME).
section: &'static strHeading of the activity section (“Recent activity”, “Access”, …).
data: Option<DetailData>None while the fetch is in flight.
show_raw: boolToggles between the formatted summary and the raw JSON.
scroll: u16Auto Trait Implementations§
impl Freeze for Detail
impl RefUnwindSafe for Detail
impl Send for Detail
impl Sync for Detail
impl Unpin for Detail
impl UnsafeUnpin for Detail
impl UnwindSafe for Detail
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more