pub struct DeclarationRow {
pub name: String,
pub kind: String,
pub type_signature: Option<String>,
pub source: Option<SourceRange>,
}Fields§
§name: String§kind: String§type_signature: Option<String>Pretty-printed type signature as the worker’s
LeanWorkerDeclarationRow reports it. None only when the
declaration has no recoverable type (typically internal artifacts).
source: Option<SourceRange>Trait Implementations§
Source§impl Clone for DeclarationRow
impl Clone for DeclarationRow
Source§fn clone(&self) -> DeclarationRow
fn clone(&self) -> DeclarationRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeclarationRow
impl Debug for DeclarationRow
Source§impl JsonSchema for DeclarationRow
impl JsonSchema for DeclarationRow
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for DeclarationRow
impl RefUnwindSafe for DeclarationRow
impl Send for DeclarationRow
impl Sync for DeclarationRow
impl Unpin for DeclarationRow
impl UnsafeUnpin for DeclarationRow
impl UnwindSafe for DeclarationRow
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