pub struct SortResult {
pub result_code: ResultCode,
pub attribute_type: Option<String>,
}Expand description
Server-side sort response control value (RFC 2891).
Fields§
§result_code: ResultCode§attribute_type: Option<String>Implementations§
Source§impl SortResult
impl SortResult
pub fn from_control(control: &Control) -> Result<SortResult, ProtoError>
Trait Implementations§
Source§impl Clone for SortResult
impl Clone for SortResult
Source§fn clone(&self) -> SortResult
fn clone(&self) -> SortResult
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 moreAuto Trait Implementations§
impl Freeze for SortResult
impl RefUnwindSafe for SortResult
impl Send for SortResult
impl Sync for SortResult
impl Unpin for SortResult
impl UnsafeUnpin for SortResult
impl UnwindSafe for SortResult
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