#[non_exhaustive]pub struct ListOrgConnectionsOptionalParams {
pub sink_org_id: Option<String>,
pub source_org_id: Option<String>,
pub limit: Option<i64>,
pub offset: Option<i64>,
}
Expand description
ListOrgConnectionsOptionalParams is a struct for passing parameters to the method OrgConnectionsAPI::list_org_connections
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.sink_org_id: Option<String>
The Org ID of the sink org.
source_org_id: Option<String>
The Org ID of the source org.
limit: Option<i64>
The limit of number of entries you want to return. Default is 1000.
offset: Option<i64>
The pagination offset which you want to query from. Default is 0.
Implementations§
Source§impl ListOrgConnectionsOptionalParams
impl ListOrgConnectionsOptionalParams
Sourcepub fn sink_org_id(self, value: String) -> Self
pub fn sink_org_id(self, value: String) -> Self
The Org ID of the sink org.
Sourcepub fn source_org_id(self, value: String) -> Self
pub fn source_org_id(self, value: String) -> Self
The Org ID of the source org.
Trait Implementations§
Source§impl Clone for ListOrgConnectionsOptionalParams
impl Clone for ListOrgConnectionsOptionalParams
Source§fn clone(&self) -> ListOrgConnectionsOptionalParams
fn clone(&self) -> ListOrgConnectionsOptionalParams
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 Default for ListOrgConnectionsOptionalParams
impl Default for ListOrgConnectionsOptionalParams
Source§fn default() -> ListOrgConnectionsOptionalParams
fn default() -> ListOrgConnectionsOptionalParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListOrgConnectionsOptionalParams
impl RefUnwindSafe for ListOrgConnectionsOptionalParams
impl Send for ListOrgConnectionsOptionalParams
impl Sync for ListOrgConnectionsOptionalParams
impl Unpin for ListOrgConnectionsOptionalParams
impl UnwindSafe for ListOrgConnectionsOptionalParams
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