pub struct RespostaDocumentacao {
pub id: Option<String>,
pub snippets: Option<Vec<DocumentationSnippet>>,
pub content: Option<String>,
}Expand description
Top-level response from the documentation endpoint (GET /api/v1/{library_id}).
Fields§
§id: Option<String>Library identifier echoed back by the API, if present.
snippets: Option<Vec<DocumentationSnippet>>Structured documentation snippets (JSON mode).
content: Option<String>Raw text content (plain-text mode).
Trait Implementations§
Source§impl Debug for RespostaDocumentacao
impl Debug for RespostaDocumentacao
Source§impl<'de> Deserialize<'de> for RespostaDocumentacao
impl<'de> Deserialize<'de> for RespostaDocumentacao
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 RespostaDocumentacao
impl RefUnwindSafe for RespostaDocumentacao
impl Send for RespostaDocumentacao
impl Sync for RespostaDocumentacao
impl Unpin for RespostaDocumentacao
impl UnsafeUnpin for RespostaDocumentacao
impl UnwindSafe for RespostaDocumentacao
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