Sha256: c3da3fe664efe468deae8ace5f44f225d6f5598d57acde604e645f384bee2c4d
Contents?: true
Size: 356 Bytes
Versions: 42
Compression:
Stored size: 356 Bytes
Contents
# Concerns type casting of a raw value to a `String`. module Metasploit::Model::Search::Operation::Value::String # # Methods # # Sets {Metasploit::Model::Search::Operation::Base#value} by type casting to a String. # # @param formatted_value [#to_s] # @return [String] def value=(formatted_value) @value = formatted_value.to_s end end
Version data entries
42 entries across 42 versions & 1 rubygems