| 194 | } |
| 195 | |
| 196 | bool BasicAuth::Equals(const BasicAuth& other) const { |
| 197 | return (username == other.username) && (password == other.password); |
| 198 | } |
| 199 | |
| 200 | arrow::Status BasicAuth::Deserialize(std::string_view serialized, BasicAuth* out) { |
| 201 | return DeserializeProtoString<pb::BasicAuth, BasicAuth>("BasicAuth", serialized, out); |