pub struct ListMetadataQuery {
pub type_name: String,
pub folder: Option<String>,
}Expand description
One query inside a list_metadata call.
At most three queries may be batched per call (Salesforce server
limit). type_name is required; folder is needed for components
that live under a folder (Dashboard, Document, EmailTemplate,
Report).
Fields§
§type_name: StringMetadata type, e.g. "ApexClass", "CustomObject".
folder: Option<String>Folder name when querying a folder-based type. Set to None
for top-level types.
Trait Implementations§
Source§impl Clone for ListMetadataQuery
impl Clone for ListMetadataQuery
Source§fn clone(&self) -> ListMetadataQuery
fn clone(&self) -> ListMetadataQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListMetadataQuery
impl RefUnwindSafe for ListMetadataQuery
impl Send for ListMetadataQuery
impl Sync for ListMetadataQuery
impl Unpin for ListMetadataQuery
impl UnsafeUnpin for ListMetadataQuery
impl UnwindSafe for ListMetadataQuery
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