pub struct PrologBackendOptions {
pub blank_between_predicates: bool,
pub emit_docs: bool,
}Expand description
Configuration options for the Prolog backend.
Fields§
§blank_between_predicates: boolEmit blank lines between predicates.
emit_docs: boolEmit %% doc comments for predicates with doc strings.
Trait Implementations§
Source§impl Clone for PrologBackendOptions
impl Clone for PrologBackendOptions
Source§fn clone(&self) -> PrologBackendOptions
fn clone(&self) -> PrologBackendOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrologBackendOptions
impl Debug for PrologBackendOptions
Source§impl Default for PrologBackendOptions
impl Default for PrologBackendOptions
Source§fn default() -> PrologBackendOptions
fn default() -> PrologBackendOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PrologBackendOptions
impl RefUnwindSafe for PrologBackendOptions
impl Send for PrologBackendOptions
impl Sync for PrologBackendOptions
impl Unpin for PrologBackendOptions
impl UnsafeUnpin for PrologBackendOptions
impl UnwindSafe for PrologBackendOptions
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