/// Struct representing a Docker Volume with some of its fields
pubstructVolume{pubname: String,
pubmountpoint: String
}implVolume{/// Returns the volume ID
pubfnname(&self)-> String{self.name.clone().replace("\"","")}/// Returns the volume mountpoint
pubfnmountpoint(&self)-> String{self.mountpoint.clone().replace("\"","")}}