cloud.google.com/go/storage.Composer.dst (field)

14 uses

	cloud.google.com/go/storage (current package)
		copy.go#L157: 	return &Composer{dst: dst, srcs: srcs}
		copy.go#L176: 	dst  *ObjectHandle
		copy.go#L185: 	if err := c.dst.validate(); err != nil {
		copy.go#L195: 	req.Destination = c.ObjectAttrs.toRawObject(c.dst.bucket)
		copy.go#L203: 		if src.bucket != c.dst.bucket {
		copy.go#L204: 			return nil, fmt.Errorf("storage: all source objects must be in bucket %q, found %q", c.dst.bucket, src.bucket)
		copy.go#L218: 	call := c.dst.c.raw.Objects.Compose(c.dst.bucket, c.dst.object, req).Context(ctx)
		copy.go#L219: 	if err := applyConds("ComposeFrom destination", c.dst.gen, c.dst.conds, call); err != nil {
		copy.go#L222: 	if c.dst.userProject != "" {
		copy.go#L223: 		call.UserProject(c.dst.userProject)
		copy.go#L228: 	if err := setEncryptionHeaders(call.Header(), c.dst.encryptionKey, false); err != nil {