pub struct CreateScriptOutput {
pub script: Option<Script>,
}Fields§
§script: Option<Script>The newly created script record with a unique script ID and ARN. The new script's storage location reflects an Amazon S3 location: (1) If the script was uploaded from an S3 bucket under your account, the storage location reflects the information that was provided in the CreateScript request; (2) If the script file was uploaded from a local zip file, the storage location reflects an S3 location controls by the Amazon GameLift service.
Trait Implementations§
Source§impl Clone for CreateScriptOutput
impl Clone for CreateScriptOutput
Source§fn clone(&self) -> CreateScriptOutput
fn clone(&self) -> CreateScriptOutput
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 CreateScriptOutput
impl Debug for CreateScriptOutput
Source§impl Default for CreateScriptOutput
impl Default for CreateScriptOutput
Source§fn default() -> CreateScriptOutput
fn default() -> CreateScriptOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateScriptOutput
impl<'de> Deserialize<'de> for CreateScriptOutput
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
Source§impl PartialEq for CreateScriptOutput
impl PartialEq for CreateScriptOutput
impl StructuralPartialEq for CreateScriptOutput
Auto Trait Implementations§
impl Freeze for CreateScriptOutput
impl RefUnwindSafe for CreateScriptOutput
impl Send for CreateScriptOutput
impl Sync for CreateScriptOutput
impl Unpin for CreateScriptOutput
impl UnwindSafe for CreateScriptOutput
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