ooxmlsdk 0.10.0

Open XML SDK for Rust
Documentation
//
// -----------------------------------------------------------------------------
//  THIS FILE WAS @generated AUTOMATICALLY. DO NOT MODIFY THIS FILE MANUALLY.
// -----------------------------------------------------------------------------
//

/// Defines the CalcFeatures Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xcalcf:calcFeatures")]
pub struct CalcFeatures {
  /// Defines the CalcFeature Class.
  #[sdk(child(qname = "xcalcf:feature"))]
  pub calc_feature: Vec<CalcFeature>,
}
/// Defines the CalcFeature Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xcalcf:feature")]
pub struct CalcFeature {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
}