pub struct VbaProjectSummaryResponse {
pub workbook_id: WorkbookId,
pub workbook_short_id: String,
pub has_vba: bool,
pub code_page: Option<u16>,
pub sys_kind: Option<String>,
pub modules: Vec<VbaModuleDescriptor>,
pub modules_truncated: bool,
pub references: Vec<VbaReferenceDescriptor>,
pub references_truncated: bool,
pub notes: Vec<String>,
}Fields§
§workbook_id: WorkbookId§workbook_short_id: String§has_vba: bool§code_page: Option<u16>§sys_kind: Option<String>§modules: Vec<VbaModuleDescriptor>§modules_truncated: bool§references: Vec<VbaReferenceDescriptor>§references_truncated: bool§notes: Vec<String>Trait Implementations§
Source§impl Clone for VbaProjectSummaryResponse
impl Clone for VbaProjectSummaryResponse
Source§fn clone(&self) -> VbaProjectSummaryResponse
fn clone(&self) -> VbaProjectSummaryResponse
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 VbaProjectSummaryResponse
impl Debug for VbaProjectSummaryResponse
Source§impl<'de> Deserialize<'de> for VbaProjectSummaryResponse
impl<'de> Deserialize<'de> for VbaProjectSummaryResponse
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 JsonSchema for VbaProjectSummaryResponse
impl JsonSchema for VbaProjectSummaryResponse
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 VbaProjectSummaryResponse
impl RefUnwindSafe for VbaProjectSummaryResponse
impl Send for VbaProjectSummaryResponse
impl Sync for VbaProjectSummaryResponse
impl Unpin for VbaProjectSummaryResponse
impl UnwindSafe for VbaProjectSummaryResponse
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