#[non_exhaustive]pub struct DebugGlobal {
pub path: ItemBuf,
}Expand description
Debug information for a static slot.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.path: ItemBufThe path of the static item occupying the slot.
Implementations§
Trait Implementations§
Source§impl Debug for DebugGlobal
impl Debug for DebugGlobal
Source§impl<'__de, __A> Decode<'__de, Binary, __A> for DebugGlobalwhere
__A: Allocator,
Available on crate feature musli only.
impl<'__de, __A> Decode<'__de, Binary, __A> for DebugGlobalwhere
__A: Allocator,
Available on crate feature
musli only.Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§impl<'__de, __A> Decode<'__de, Text, __A> for DebugGlobalwhere
__A: Allocator,
Available on crate feature musli only.
impl<'__de, __A> Decode<'__de, Text, __A> for DebugGlobalwhere
__A: Allocator,
Available on crate feature
musli only.Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§impl<'de> Deserialize<'de> for DebugGlobal
Available on crate feature serde only.
impl<'de> Deserialize<'de> for DebugGlobal
Available on crate feature
serde only.Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DebugGlobal
impl Display for DebugGlobal
Source§impl Encode<Binary> for DebugGlobal
Available on crate feature musli only.
impl Encode<Binary> for DebugGlobal
Available on crate feature
musli only.Source§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = DebugGlobal
type Encode = DebugGlobal
The underlying type being encoded. Read more
Source§impl Encode<Text> for DebugGlobal
Available on crate feature musli only.
impl Encode<Text> for DebugGlobal
Available on crate feature
musli only.Source§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = DebugGlobal
type Encode = DebugGlobal
The underlying type being encoded. Read more
Source§impl Serialize for DebugGlobal
Available on crate feature serde only.
impl Serialize for DebugGlobal
Available on crate feature
serde only.Auto Trait Implementations§
impl Freeze for DebugGlobal
impl RefUnwindSafe for DebugGlobal
impl Send for DebugGlobal
impl Sync for DebugGlobal
impl Unpin for DebugGlobal
impl UnsafeUnpin for DebugGlobal
impl UnwindSafe for DebugGlobal
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