pub struct LoopDecl {
pub loop_name: String,
pub loop_range: String,
pub header_row: String,
pub output_cols: Vec<String>,
pub start_row: u32,
pub end_row: u32,
}Expand description
The declared loop block (the Rooms per-room iteration). Populated ONLY from a
CONFIRMED Rooms named range (Plan 05’s round-trip path; D-10).
Fields§
§loop_name: StringThe loop name (e.g. "Rooms").
loop_range: StringThe A1 range the loop iterates over.
header_row: StringThe header row reference.
output_cols: Vec<String>The output column references.
start_row: u32The 1-based first iteration row.
end_row: u32The 1-based last iteration row.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LoopDecl
impl<'de> Deserialize<'de> for LoopDecl
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
impl Eq for LoopDecl
Source§impl JsonSchema for LoopDecl
impl JsonSchema for LoopDecl
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 moreimpl StructuralPartialEq for LoopDecl
Auto Trait Implementations§
impl Freeze for LoopDecl
impl RefUnwindSafe for LoopDecl
impl Send for LoopDecl
impl Sync for LoopDecl
impl Unpin for LoopDecl
impl UnsafeUnpin for LoopDecl
impl UnwindSafe for LoopDecl
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.