pub enum IntralinksDocsConfig {
DocsRs {
base_url: Option<String>,
version: Option<String>,
},
Flat {
base_url: String,
},
}Expand description
Layout of the documentation URLs produced for intralinks.
IntralinksDocsConfig::DocsRs follows the docs.rs scheme, inserting a {crate}/{version}
segment between the base URL and the item path. IntralinksDocsConfig::Flat omits those
segments, appending the item path directly to the base URL: this matches the layout produced
by a local cargo doc build and hosting setups that mirror it.
Variants§
Trait Implementations§
Source§impl Clone for IntralinksDocsConfig
impl Clone for IntralinksDocsConfig
Source§fn clone(&self) -> IntralinksDocsConfig
fn clone(&self) -> IntralinksDocsConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntralinksDocsConfig
impl Debug for IntralinksDocsConfig
Source§impl Default for IntralinksDocsConfig
impl Default for IntralinksDocsConfig
Source§fn default() -> IntralinksDocsConfig
fn default() -> IntralinksDocsConfig
Returns the “default value” for a type. Read more
impl Eq for IntralinksDocsConfig
Source§impl PartialEq for IntralinksDocsConfig
impl PartialEq for IntralinksDocsConfig
impl StructuralPartialEq for IntralinksDocsConfig
Auto Trait Implementations§
impl Freeze for IntralinksDocsConfig
impl RefUnwindSafe for IntralinksDocsConfig
impl Send for IntralinksDocsConfig
impl Sync for IntralinksDocsConfig
impl Unpin for IntralinksDocsConfig
impl UnsafeUnpin for IntralinksDocsConfig
impl UnwindSafe for IntralinksDocsConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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