pub struct DebugSymbolsBuilder { /* private fields */ }Expand description
Builder for DebugSymbols.
Implementations§
Source§impl DebugSymbolsBuilder
impl DebugSymbolsBuilder
Sourcepub fn type<VALUE: Into<DebugSymbolsType>>(&mut self, value: VALUE) -> &mut Self
pub fn type<VALUE: Into<DebugSymbolsType>>(&mut self, value: VALUE) -> &mut Self
Type of the debug symbols.
Sourcepub fn external_url<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn external_url<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
URL of the external symbol source.
Sourcepub fn build(&self) -> Result<DebugSymbols, DebugSymbolsBuilderError>
pub fn build(&self) -> Result<DebugSymbols, DebugSymbolsBuilderError>
Trait Implementations§
Source§impl Clone for DebugSymbolsBuilder
impl Clone for DebugSymbolsBuilder
Source§fn clone(&self) -> DebugSymbolsBuilder
fn clone(&self) -> DebugSymbolsBuilder
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 moreAuto Trait Implementations§
impl Freeze for DebugSymbolsBuilder
impl RefUnwindSafe for DebugSymbolsBuilder
impl Send for DebugSymbolsBuilder
impl Sync for DebugSymbolsBuilder
impl Unpin for DebugSymbolsBuilder
impl UnsafeUnpin for DebugSymbolsBuilder
impl UnwindSafe for DebugSymbolsBuilder
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