pub struct PerfSendParams {
pub file: String,
pub aws_key: String,
pub aws_secret: String,
pub bucket: String,
pub prefix: String,
pub region: Option<String>,
}Expand description
Parameters describing how to send perf results to cedar.
Fields§
§file: StringJson or yaml file containing test results.
aws_key: StringAWS key to upload file with.
aws_secret: StringAWS secret to upload file with.
bucket: StringS3 bucket to upload to.
prefix: StringPrefix within the S3 bucket.
region: Option<String>AWS region of the bucket.
Trait Implementations§
Source§impl Clone for PerfSendParams
impl Clone for PerfSendParams
Source§fn clone(&self) -> PerfSendParams
fn clone(&self) -> PerfSendParams
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 PerfSendParams
impl Debug for PerfSendParams
Source§impl<'de> Deserialize<'de> for PerfSendParams
impl<'de> Deserialize<'de> for PerfSendParams
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 PerfSendParams
impl RefUnwindSafe for PerfSendParams
impl Send for PerfSendParams
impl Sync for PerfSendParams
impl Unpin for PerfSendParams
impl UnwindSafe for PerfSendParams
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