Struct aws_sdk_glue::types::Order
source · #[non_exhaustive]pub struct Order {
pub column: Option<String>,
pub sort_order: i32,
}Expand description
Specifies the sort order of a sorted column.
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.column: Option<String>The name of the column.
sort_order: i32Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).
Implementations§
Trait Implementations§
source§impl PartialEq<Order> for Order
impl PartialEq<Order> for Order
impl StructuralPartialEq for Order
Auto Trait Implementations§
impl RefUnwindSafe for Order
impl Send for Order
impl Sync for Order
impl Unpin for Order
impl UnwindSafe for Order
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