pub struct SymbolDetailResponse {
pub symbols: Vec<SymbolDetail>,
}Expand description
Response wrapper for GET /v1/symbols/:id.
Fields§
§symbols: Vec<SymbolDetail>Full details for the requested symbol (typically one entry).
Trait Implementations§
Source§impl Debug for SymbolDetailResponse
impl Debug for SymbolDetailResponse
Source§impl<'de> Deserialize<'de> for SymbolDetailResponse
impl<'de> Deserialize<'de> for SymbolDetailResponse
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
Auto Trait Implementations§
impl Freeze for SymbolDetailResponse
impl RefUnwindSafe for SymbolDetailResponse
impl Send for SymbolDetailResponse
impl Sync for SymbolDetailResponse
impl Unpin for SymbolDetailResponse
impl UnsafeUnpin for SymbolDetailResponse
impl UnwindSafe for SymbolDetailResponse
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