pub enum CodeSettings {
CodeSettings(CodeSettings),
}Expand description
Variants§
CodeSettings(CodeSettings)
Trait Implementations§
Source§impl Clone for CodeSettings
impl Clone for CodeSettings
Source§fn clone(&self) -> CodeSettings
fn clone(&self) -> CodeSettings
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 CodeSettings
impl Debug for CodeSettings
Source§impl Deserializable for CodeSettings
impl Deserializable for CodeSettings
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<CodeSettings> for CodeSettings
impl From<CodeSettings> for CodeSettings
Source§fn from(x: CodeSettings) -> Self
fn from(x: CodeSettings) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CodeSettings
impl PartialEq for CodeSettings
Source§impl Serializable for CodeSettings
impl Serializable for CodeSettings
Source§impl TryFrom<CodeSettings> for CodeSettings
impl TryFrom<CodeSettings> for CodeSettings
Source§type Error = CodeSettings
type Error = CodeSettings
The type returned in the event of a conversion error.
impl StructuralPartialEq for CodeSettings
Auto Trait Implementations§
impl Freeze for CodeSettings
impl RefUnwindSafe for CodeSettings
impl Send for CodeSettings
impl Sync for CodeSettings
impl Unpin for CodeSettings
impl UnsafeUnpin for CodeSettings
impl UnwindSafe for CodeSettings
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