pub struct OptimizeResponse {
pub success: bool,
pub job_id: Option<String>,
pub message: String,
}Expand description
Optimize namespace response
Fields§
§success: bool§job_id: Option<String>§message: StringTrait Implementations§
Source§impl Clone for OptimizeResponse
impl Clone for OptimizeResponse
Source§fn clone(&self) -> OptimizeResponse
fn clone(&self) -> OptimizeResponse
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 moreSource§impl Debug for OptimizeResponse
impl Debug for OptimizeResponse
Source§impl<'de> Deserialize<'de> for OptimizeResponse
impl<'de> Deserialize<'de> for OptimizeResponse
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
Auto Trait Implementations§
impl Freeze for OptimizeResponse
impl RefUnwindSafe for OptimizeResponse
impl Send for OptimizeResponse
impl Sync for OptimizeResponse
impl Unpin for OptimizeResponse
impl UnsafeUnpin for OptimizeResponse
impl UnwindSafe for OptimizeResponse
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