// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
pubmodstorage;pubusestorage::Storage;/// A buffer capable of being written into by a reader
pubtraitWriter{fnread_from<R>(&mutself, reader:&mut R)->Result<(), super::Error<R::Error>>where
R:super::Reader + ?Sized;
}