pub struct ListGraph {
pub name: String,
pub desc: String,
pub max_size: usize,
}Expand description
ListGraph is the result of Galaxy::list_graphs.
Fields§
§name: StringThe name of graph. e.g. “default”
desc: StringThe description of graph.
max_size: usizeThe max size in bytes of graph stored in filesystem.
Auto Trait Implementations§
impl Freeze for ListGraph
impl RefUnwindSafe for ListGraph
impl Send for ListGraph
impl Sync for ListGraph
impl Unpin for ListGraph
impl UnwindSafe for ListGraph
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