Struct aws_sdk_outposts::model::LineItem
source · [−]#[non_exhaustive]pub struct LineItem {
pub catalog_item_id: Option<String>,
pub line_item_id: Option<String>,
pub quantity: i32,
pub status: Option<LineItemStatus>,
}
Expand description
Information about a line item.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.catalog_item_id: Option<String>
The ID of the catalog item.
line_item_id: Option<String>
The ID of the line item.
quantity: i32
The quantity of the line item.
status: Option<LineItemStatus>
The status of the line item.
Implementations
The ID of the catalog item.
The ID of the line item.
The status of the line item.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LineItem
impl UnwindSafe for LineItem
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more