function FieldOptions::setUnverifiedLazy
unverified_lazy does no correctness checks on the byte stream. This should only be used where lazy with verification is prohibitive for performance reasons.
Generated from protobuf field <code>optional bool unverified_lazy = 15 [default = false];</code>
Parameters
bool $var:
Return value
$this
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Internal/ FieldOptions.php, line 446
Class
- FieldOptions
- Generated from protobuf message <code>google.protobuf.FieldOptions</code>
Namespace
Google\Protobuf\InternalCode
public function setUnverifiedLazy($var) {
GPBUtil::checkBool($var);
$this->unverified_lazy = $var;
return $this;
}