pub struct Options {
pub format: String,
pub engine: String,
pub y_invert: bool,
}
Expand description
Graphviz renderer options
Fields§
§format: String
Output format. See VizInstance::formats for available options
engine: String
Graphviz engine. See VizInstance::engines for available options
y_invert: bool
Invert y coordinates in output
Trait Implementations§
Source§impl FromWasmAbi for Options
impl FromWasmAbi for Options
Source§impl IntoWasmAbi for Options
impl IntoWasmAbi for Options
Source§impl LongRefFromWasmAbi for Options
impl LongRefFromWasmAbi for Options
Source§impl OptionFromWasmAbi for Options
impl OptionFromWasmAbi for Options
Source§impl OptionIntoWasmAbi for Options
impl OptionIntoWasmAbi for Options
Source§impl RefFromWasmAbi for Options
impl RefFromWasmAbi for Options
Source§impl RefMutFromWasmAbi for Options
impl RefMutFromWasmAbi for Options
Source§impl TryFromJsValue for Options
impl TryFromJsValue for Options
Source§impl VectorFromWasmAbi for Options
impl VectorFromWasmAbi for Options
Source§impl VectorIntoWasmAbi for Options
impl VectorIntoWasmAbi for Options
impl SupportsConstructor for Options
impl SupportsInstanceProperty for Options
impl SupportsStaticProperty for Options
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.