Struct JsonViewer

Source
pub struct JsonViewer { /* private fields */ }
Expand description

A widget for viewing json data.

Set an initial value during construction (via new) and replace it either using update or reset.

The widgets provides multiple interaction points, for example to fold or unfold structures, or to grow or shrink the number of elements shown of an array. At any time, one of these knobs is active. Use select_next or select_previous or the Scrollable implementation to change it. Call toggle_active_element to interact with the currently active element. Interacting with an element might hide it, but the widget takes care to select another element in that case.

Implementations§

Source§

impl JsonViewer

Source

pub fn new(value: impl Value) -> Self

Create a new JsonViewer widget that will display the specified value.

It follows that it is impossible to not have content. However, it is possible to show an empty String, so there is that.

Source

pub fn reset(&mut self, value: impl Value)

Set a new value to display and do not highlight any changes (in contrast to update).

Source

pub fn update(&mut self, value: impl Value)

Set a new value to display and highlight changes from the previous value (which will be shown until the next update or reset.

Source

pub fn select_next(&mut self) -> Result<(), ()>

Select the next interaction point of the widget (generally “down” from the current one).

Source

pub fn select_previous(&mut self) -> Result<(), ()>

Select the previous interaction point of the widget (generally “up” from the current one).

Source

pub fn toggle_active_element(&mut self) -> Result<(), ()>

Interact with the currently active interaction point and, for example, fold/unfold structures.

Source

pub fn as_widget<'a>(&'a self) -> JsonViewerWidget<'a>

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.