pub struct ShEx2Html { /* private fields */ }
Implementations§
Source§impl ShEx2Html
impl ShEx2Html
pub fn new(config: ShEx2HtmlConfig) -> ShEx2Html
pub fn current_html(&self) -> &HtmlSchema
pub fn convert(&mut self, shex: &Schema) -> Result<(), ShEx2HtmlError>
pub fn create_svg_schema(&self) -> Result<String, ShEx2HtmlError>
pub fn create_svg_shape(&self, name: &str) -> Result<String, ShEx2HtmlError>
pub fn create_name_for_schema(&self, _shex: &Schema) -> Name
pub fn export_schema(&self) -> Result<(), ShEx2HtmlError>
Auto Trait Implementations§
impl Freeze for ShEx2Html
impl RefUnwindSafe for ShEx2Html
impl Send for ShEx2Html
impl Sync for ShEx2Html
impl Unpin for ShEx2Html
impl UnwindSafe for ShEx2Html
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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