pub struct ReadPolicyVersionsRequest {
pub first_item: Option<i32>,
pub policy_orn: String,
pub results_per_page: Option<i32>,
}Fields§
§first_item: Option<i32>The item starting the list of policies requested.
policy_orn: StringThe OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
results_per_page: Option<i32>The maximum number of items that can be returned in a single response (by default, 100).
Implementations§
Source§impl ReadPolicyVersionsRequest
impl ReadPolicyVersionsRequest
pub fn new(policy_orn: String) -> ReadPolicyVersionsRequest
Trait Implementations§
Source§impl Clone for ReadPolicyVersionsRequest
impl Clone for ReadPolicyVersionsRequest
Source§fn clone(&self) -> ReadPolicyVersionsRequest
fn clone(&self) -> ReadPolicyVersionsRequest
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 ReadPolicyVersionsRequest
impl Debug for ReadPolicyVersionsRequest
Source§impl Default for ReadPolicyVersionsRequest
impl Default for ReadPolicyVersionsRequest
Source§fn default() -> ReadPolicyVersionsRequest
fn default() -> ReadPolicyVersionsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReadPolicyVersionsRequest
impl<'de> Deserialize<'de> for ReadPolicyVersionsRequest
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 StructuralPartialEq for ReadPolicyVersionsRequest
Auto Trait Implementations§
impl Freeze for ReadPolicyVersionsRequest
impl RefUnwindSafe for ReadPolicyVersionsRequest
impl Send for ReadPolicyVersionsRequest
impl Sync for ReadPolicyVersionsRequest
impl Unpin for ReadPolicyVersionsRequest
impl UnwindSafe for ReadPolicyVersionsRequest
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.